aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-06-29 13:49:50 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-06-29 13:49:50 +0800
commitcb84ae746f08eafe96b53661ef0e36aad43c0c5e (patch)
treeed35b31f65e6afa23aac87ea522d721b7b9b6b21
parent1c32bfb6976c66eb66528e9454b400cdfba65e43 (diff)
downloadRoughlyEnoughItems-cb84ae746f08eafe96b53661ef0e36aad43c0c5e.tar.gz
RoughlyEnoughItems-cb84ae746f08eafe96b53661ef0e36aad43c0c5e.tar.bz2
RoughlyEnoughItems-cb84ae746f08eafe96b53661ef0e36aad43c0c5e.zip
how does this work
-rwxr-xr-xbuild.gradle5
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
+ }
}
}