diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-06-29 13:49:50 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-06-29 13:49:50 +0800 |
| commit | cb84ae746f08eafe96b53661ef0e36aad43c0c5e (patch) | |
| tree | ed35b31f65e6afa23aac87ea522d721b7b9b6b21 | |
| parent | 1c32bfb6976c66eb66528e9454b400cdfba65e43 (diff) | |
| download | RoughlyEnoughItems-cb84ae746f08eafe96b53661ef0e36aad43c0c5e.tar.gz RoughlyEnoughItems-cb84ae746f08eafe96b53661ef0e36aad43c0c5e.tar.bz2 RoughlyEnoughItems-cb84ae746f08eafe96b53661ef0e36aad43c0c5e.zip | |
how does this work
| -rwxr-xr-x | build.gradle | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index a07f6fb3e..dd257714c 100755 --- a/build.gradle +++ b/build.gradle @@ -58,9 +58,12 @@ dependencies { publishing { publications { mavenJava(MavenPublication) { - artifact(jar) { + artifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) { builtBy remapJar } + artifact(jar) { + builtBy jar + } } } |
