forked from skylot/jadx
-
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.
gui: fix build for java 10 and update dependencies (skylot#291)
- Loading branch information
Showing
14 changed files
with
71 additions
and
66 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 |
---|---|---|
|
@@ -18,7 +18,6 @@ build/ | |
classes/ | ||
idea/ | ||
.gradle/ | ||
gradle.properties | ||
|
||
jadx-output/ | ||
*-tmp/ | ||
|
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 |
---|---|---|
@@ -1,39 +1,49 @@ | ||
language: java | ||
jdk: | ||
- oraclejdk8 | ||
sudo: false | ||
dist: trusty | ||
|
||
before_install: | ||
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh | ||
- chmod +x gradlew | ||
|
||
env: | ||
- TERM=dumb GRADLE_OPTS="-Dorg.gradle.daemon=false" | ||
global: | ||
- TERM=dumb | ||
|
||
before_install: | ||
- chmod +x gradlew | ||
matrix: | ||
include: | ||
- env: JDK=oracle-8 | ||
jdk: oraclejdk8 | ||
- env: JDK=oracle-10 | ||
install: . ./install-jdk.sh -F 10 -L BCL | ||
|
||
script: | ||
- sed -i " 1 s/.*/&-b$TRAVIS_BUILD_NUMBER-$(git rev-parse --short HEAD)/" version | ||
- cat version | ||
- sed -i "s/BUILD_VERSION/$(head -c -1 version)/g" bintray.json | ||
- ./gradlew clean build | ||
- java -version | ||
- sed -i " 1 s/.*/&-b$TRAVIS_BUILD_NUMBER-$(git rev-parse --short HEAD)/" version | ||
- cat version | ||
- sed -i "s/BUILD_VERSION/$(head -c -1 version)/g" bintray.json | ||
- ./gradlew clean build | ||
|
||
after_success: | ||
- ./gradlew clean build jacocoTestReport | ||
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" | ||
- ./gradlew clean sonarqube -Dsonar.host.url=$SONAR_HOST -Dsonar.organization=$SONAR_ORG -Dsonar.login=$SONAR_TOKEN | ||
- ./gradlew clean dist | ||
- test $JDK = "oracle-8" && ./gradlew clean build jacocoTestReport && bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" | ||
- test $JDK = "oracle-8" && ./gradlew clean sonarqube -Dsonar.host.url=$SONAR_HOST -Dsonar.organization=$SONAR_ORG -Dsonar.login=$SONAR_TOKEN || echo "Skip sonar build and upload" | ||
|
||
deploy: | ||
provider: bintray | ||
edge: | ||
branch: v1.8.47 | ||
file: bintray.json | ||
user: skylot | ||
key: $BINTRAY_KEY | ||
skip_cleanup: true | ||
on: | ||
branch: master | ||
tags: false | ||
before_deploy: | ||
- ./gradlew clean dist | ||
|
||
sudo: false | ||
deploy: | ||
provider: bintray | ||
edge: | ||
branch: v1.8.47 | ||
file: bintray.json | ||
user: skylot | ||
key: $BINTRAY_KEY | ||
skip_cleanup: true | ||
on: | ||
branch: master | ||
tags: false | ||
condition: $JDK = oracle-8 | ||
|
||
notifications: | ||
email: | ||
- [email protected] | ||
email: | ||
- [email protected] |
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
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 @@ | ||
org.gradle.daemon=false |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.5.1-bin.zip |
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
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
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
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
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
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
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
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