Added builder, DataTracker and KeyValue #16
@ -30,7 +30,9 @@ jobs:
|
|||||||
distribution: 'oracle'
|
distribution: 'oracle'
|
||||||
- name: make gradle wrapper executable
|
- name: make gradle wrapper executable
|
||||||
if: ${{ runner.os != 'Windows' }}
|
if: ${{ runner.os != 'Windows' }}
|
||||||
run: chmod +x ./gradlew
|
run: |
|
||||||
|
chmod +x ./gradlew
|
||||||
|
touch local.properties
|
||||||
- name: build
|
- name: build
|
||||||
run: ./gradlew build --no-daemon --max-workers 1
|
run: ./gradlew build --no-daemon --max-workers 1
|
||||||
#- name: test
|
#- name: test
|
||||||
|
@ -3,7 +3,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Properties local = new Properties()
|
Properties local = new Properties()
|
||||||
local.load(project.rootProject.file('local.properties').newDataInputStream())
|
local.load(new FileInputStream(rootProject.file("local.properties")))
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
apply plugin: 'maven-publish'
|
apply plugin: 'maven-publish'
|
||||||
|
Loading…
Reference in New Issue
Block a user