Reverted changes I shouldn't have commited

This commit is contained in:
Somethingweirdhere 2018-06-05 18:27:39 +02:00
parent 33f66c4268
commit 337ee21569
2 changed files with 1 additions and 14 deletions

View File

@ -29,19 +29,6 @@ subprojects {
}
}
task deleteJar(type: Delete) {
delete 'libs/jars/logmanagementlib.jar'
}
task createJar(type: Copy) {
from('build/intermediates/bundles/release/')
into('libs/jars/')
include('classes.jar')
rename('classes.jar', 'logmanagementlib.jar')
}
createJar.dependsOn(deleteJar, build)
// https://discuss.gradle.org/t/best-approach-gradle-multi-module-project-generate-just-one-global-javadoc/18657/21
task aggregatedJavadocs(type: Javadoc, group: 'Documentation') {
destinationDir = file("$buildDir/docs/javadoc")

View File

@ -8,4 +8,4 @@ dependencies {
implementation 'org.nibor.autolink:autolink:0.8.0'
testImplementation 'junit:junit:4.12'
}
}