Commit 8c0584bb by UpcraftLP

fix indentation

parent 9101ee4e
......@@ -63,12 +63,15 @@ jar {
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact jar
artifact(jar) {
builtBy remapJar
}
artifact javadocJar
artifact sourcesJar
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
......@@ -78,8 +81,5 @@ publishing {
// mavenLocal()
}
}
// make sure that jars are properly remapped before uploading
tasks.publish.dependsOn build
tasks.build.dependsOn javadocJar
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment