Skip to content

Commit

Permalink
Update ASMHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 committed Jan 25, 2016
1 parent 7adf20d commit 80748a5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ASMHelper
Submodule ASMHelper updated 2 files
+1 −1 README.md
+20 −1 build.gradle
13 changes: 9 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ sourceSets.main{
}
}

dependencies {
compile project(':ASMHelper')
}

jar {
manifest {
attributes 'FMLCorePlugin': 'squeek.applecore.AppleCore'
Expand Down Expand Up @@ -147,3 +143,12 @@ if (mavenUrl && !project.hasProperty('nopublish')) {
build.finalizedBy(uploadArchives)
}
}

task testPom << {
apply plugin: 'maven'
pom {
whenConfigured {pom ->
//pom.dependencies.removeAll {dep -> dep.groupId == "squeek.asmhelper" }
}
}.writeTo(new PrintWriter(System.out))
}

0 comments on commit 80748a5

Please sign in to comment.