s/fatJar/shadowJar

This commit is contained in:
Connor Tumbleson 2017-05-08 08:45:39 -04:00
parent e723e6e68f
commit 966c861d2f
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
3 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ before_install:
- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get install -qq libstdc++6:i386 lib32z1 expect - sudo apt-get install -qq libstdc++6:i386 lib32z1 expect
- git submodule update --init --recursive - git submodule update --init --recursive
script: ./gradlew build fatJar proguard script: ./gradlew build shadowJar proguard
branches: branches:
only: only:
- master - master

View File

@ -33,11 +33,11 @@ For example for the `2.2.1` release.
In order to maintain a clean slate. Run `gradlew clean` to start from a clean slate. Now lets build In order to maintain a clean slate. Run `gradlew clean` to start from a clean slate. Now lets build
the new version. We should not have any new commits since the tagged commit. the new version. We should not have any new commits since the tagged commit.
./gradlew build fatJar proguard release ./gradlew build shadowJar proguard release
The build should tell you what version you are building and it should match the commits you made previously. The build should tell you what version you are building and it should match the commits you made previously.
➜ Apktool git:(master) ./gradlew build fatJar proguard release ➜ Apktool git:(master) ./gradlew build shadowJar proguard release
Building RELEASE (master): 2.2.2 Building RELEASE (master): 2.2.2
### Testing the binary. ### Testing the binary.

View File

@ -1,2 +1,2 @@
#!/usr/bin/env sh #!/usr/bin/env sh
./gradlew build fatJar ./gradlew build shadowJar