Merge branch 'test-and11' of https://github.com/afischerdev/brouter into test-and11

This commit is contained in:
afischerdev 2021-10-15 11:29:21 +02:00
commit 7fc66c153f
3 changed files with 24 additions and 3 deletions

13
.editorconfig Normal file
View file

@ -0,0 +1,13 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
[*.java]
indent_style = space
indent_size = 2
[*.gradle]
indent_style = space
indent_size = 4

View file

@ -16,11 +16,18 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '8'
java-version: '11'
distribution: 'zulu'
cache: gradle
- name: Create local.properties
run: touch local.properties
- name: Build with Gradle
run: ./gradlew build
- name: Upload ZIP
uses: actions/upload-artifact@v2
with:
name: ZIP
path: brouter-server/build/distributions/brouter-*.zip

View file

@ -30,6 +30,7 @@ application {
}
distZip {
dependsOn fatJar
archiveFileName = 'brouter-' + project.version + '.zip'
}