Remove assets Javadoc jar

Previously, when assets was managed as a separate library and
repository, its Javadoc was published via Jitpack and linked to from the
documentation at https://bisq.network. This is no longer the case, and
therefore building the Javadoc jar is no longer necessary.
This commit is contained in:
Chris Beams 2018-11-04 16:28:43 +01:00
parent bd1e7e273f
commit 83118b6640
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73

View file

@ -1,17 +1,3 @@
javadoc {
options.author = true
options.addStringOption('Xdoclint:none', '-quiet')
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar
}
dependencies {
compile('network.bisq.libdohj:libdohj-core:d4ace7bc') {
exclude(module: 'protobuf-java')