Commit 3d19f05d9afbb7486622b3181549f11ebd6fe9b5
1 parent
7b01aee7
Fix build script
Showing
1 changed file
with
14 additions
and
1 deletions
build.gradle
| ... | ... | @@ -152,7 +152,7 @@ jar { |
| 152 | 152 | doFirst { |
| 153 | 153 | // Seriously forge? |
| 154 | 154 | ant.replace( |
| 155 | - file: sourceSets.main.refMapFile, | |
| 155 | + file: file("${compileJava.temporaryDir}/${sourceSets.main.refMap}"), | |
| 156 | 156 | token: "func_72355_a(Lnet/minecraft/network/NetworkManager;Lnet/minecraft/entity/player/EntityPlayerMP;)V", |
| 157 | 157 | value: "initializeConnectionToPlayer(Lnet/minecraft/network/NetworkManager;Lnet/minecraft/entity/player/EntityPlayerMP;Lnet/minecraft/network/NetHandlerPlayServer;)V" |
| 158 | 158 | ) |
| ... | ... | @@ -290,7 +290,20 @@ uploadArchives { |
| 290 | 290 | url 'http://develop.liteloader.com/liteloader/LiteLoader/issues' |
| 291 | 291 | } |
| 292 | 292 | } |
| 293 | +// whenConfigured { | |
| 294 | +// dependencies = dependencies.findAll { | |
| 295 | +// !it.artifactId.contains('mixin') | |
| 296 | +// } | |
| 297 | +// } | |
| 293 | 298 | } |
| 294 | 299 | } |
| 295 | 300 | } |
| 296 | 301 | } |
| 302 | + | |
| 303 | +//install.repositories.mavenInstaller.pom { | |
| 304 | +// whenConfigured { | |
| 305 | +// dependencies = dependencies.findAll { | |
| 306 | +// !it.artifactId.contains('mixin') | |
| 307 | +// } | |
| 308 | +// } | |
| 309 | +//} | ... | ... |