remove fatJar

This commit is contained in:
REAndroid 2023-04-18 15:21:07 +02:00
parent 848125724b
commit 98545e3699
2 changed files with 1 additions and 5 deletions

View File

@ -53,7 +53,7 @@ dependencies {
```ShellSession ```ShellSession
git clone https://github.com/REAndroid/ARSCLib.git git clone https://github.com/REAndroid/ARSCLib.git
cd ARSCLib cd ARSCLib
./gradlew fatJar ./gradlew jar
# Built jar will be placed ./build/libs/ARSCLib-x.x.x.jar # Built jar will be placed ./build/libs/ARSCLib-x.x.x.jar
``` ```

View File

@ -40,9 +40,5 @@ jar {
exclude('com/reandroid/test/**') exclude('com/reandroid/test/**')
} }
task fatJar(type: Jar) {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}