Commit b060114d8e89d9ed96c8acff1afd56e903f2cfc8

Authored by Mumfrey
1 parent 3d19f05d

Strip mixin dependency from generated pom

Showing 1 changed file with 12 additions and 12 deletions
build.gradle
... ... @@ -290,20 +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 + whenConfigured {
  294 + dependencies = dependencies.findAll {
  295 + !it.artifactId.contains('mixin')
  296 + }
  297 + }
298 298 }
299 299 }
300 300 }
301 301 }
302 302  
303   -//install.repositories.mavenInstaller.pom {
304   -// whenConfigured {
305   -// dependencies = dependencies.findAll {
306   -// !it.artifactId.contains('mixin')
307   -// }
308   -// }
309   -//}
  303 +install.repositories.mavenInstaller.pom {
  304 + whenConfigured {
  305 + dependencies = dependencies.findAll {
  306 + !it.artifactId.contains('mixin')
  307 + }
  308 + }
  309 +}
... ...