Merge branch 'test-and11' of https://github.com/afischerdev/brouter into test-and11
This commit is contained in:
commit
a2c5007552
2 changed files with 26 additions and 7 deletions
15
.github/workflows/gradle-publish.yml
vendored
15
.github/workflows/gradle-publish.yml
vendored
|
@ -4,8 +4,7 @@
|
|||
name: Gradle Package
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ gradle-publish ]
|
||||
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
|
@ -19,14 +18,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'
|
||||
distribution: 'zulu'
|
||||
java-version: '11'
|
||||
distribution: 'adopt'
|
||||
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
|
||||
settings-path: ${{ github.workspace }} # location for the settings.xml file
|
||||
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
run: gradle build
|
||||
|
||||
|
||||
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
|
||||
# the publishing section of your build.gradle
|
||||
|
|
18
build.gradle
18
build.gradle
|
@ -1,6 +1,5 @@
|
|||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
|
||||
buildscript {
|
||||
|
||||
repositories {
|
||||
|
@ -23,12 +22,29 @@ allprojects {
|
|||
// app: build.gradle (versionCode only)
|
||||
// OsmTrack (version and versionDate)
|
||||
project.version "1.6.2"
|
||||
group 'org.btools'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
}
|
||||
|
||||
apply plugin: "maven-publish"
|
||||
publishing {
|
||||
repositories {
|
||||
maven {
|
||||
name = "GitHubPackages"
|
||||
url = uri("https://maven.pkg.github.com/$System.env.REPO")
|
||||
credentials {
|
||||
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
|
||||
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
|
||||
}
|
||||
}
|
||||
}
|
||||
publications {
|
||||
gpr(MavenPublication)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
|
|
Loading…
Reference in a new issue