-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e84e16e
Showing
23 changed files
with
1,862 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Text files with LF eol | ||
*.auth crlf=input | ||
*.awk crlf=input | ||
*.bnd crlf=input | ||
*.bndrun crlf=input | ||
*.c crlf=input ident | ||
*.conf crlf=input | ||
*.cpp crlf=input ident | ||
*.css crlf=input | ||
*.ddf crlf=input | ||
*.ee crlf=input | ||
*.gradle crlf=input | ||
*.groovy crlf=input | ||
*.h crlf=input ident | ||
*.html crlf=input ident | ||
*.java crlf=input ident | ||
*.js crlf=input | ||
*.lib crlf=input | ||
*.md crlf=input | ||
*.MF crlf=input | ||
*.mf crlf=input | ||
*.perm crlf=input | ||
*.php crlf=input | ||
*.pl crlf=input | ||
*.pom crlf=input | ||
*.prefs crlf=input | ||
*.properties crlf=input | ||
*.py crlf=input | ||
*.schema crlf=input | ||
*.SF crlf=input | ||
*.sh crlf=input | ||
*.tcl crlf=input | ||
*.txt crlf=input | ||
*.xml crlf=input | ||
*.xsd crlf=input ident | ||
*.xsl crlf=input | ||
*.xslt crlf=input | ||
*.yml crlf=input | ||
.classpath crlf=input | ||
.project crlf=input | ||
gradlew crlf=input | ||
packageinfo crlf=input | ||
Makefile crlf=input | ||
README crlf=input | ||
LICENSE crlf=input | ||
|
||
# No EOL translation | ||
*.bat -crlf | ||
|
||
# Binary. No EOL translation, no diff | ||
*.ico binary | ||
*.jpeg binary | ||
*.jpg binary | ||
*.png binary | ||
*.crt binary | ||
*.pdf binary | ||
*.dll binary | ||
*.jar binary | ||
*.jnilib binary | ||
*.so binary | ||
*.zip binary | ||
*.doc binary | ||
*.ppt binary | ||
*.xls binary | ||
*.odg binary | ||
*.odp binary | ||
*.ods binary | ||
*.odt binary | ||
*.otg binary | ||
*.otp binary | ||
*.ots binary | ||
*.ott binary | ||
*.key binary | ||
*.numbers binary | ||
*.pages binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: CI Build | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
LC_ALL: en_US.UTF-8 | ||
GRADLE_OPTS: -Dorg.gradle.parallel=false | ||
|
||
jobs: | ||
build: | ||
name: build on OpenJDK Linux | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v1 | ||
- name: Gradle Wrapper Validation | ||
uses: gradle/wrapper-validation-action@v1 | ||
- name: Set up Java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Build | ||
shell: bash | ||
run: ./gradlew build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
*.bak | ||
/.metadata/ | ||
/.recommenders/ | ||
Archive | ||
.DS_Store | ||
.*.swp | ||
/.gradle/ | ||
/reports/ | ||
/generated/ | ||
.to | ||
cache/ |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.