Add license and javadoc to new artifacts.

This commit is contained in:
Moxie Marlinspike 2015-01-08 16:17:33 -08:00
parent 6445ea5f13
commit 31cca7eaa5
3 changed files with 43 additions and 0 deletions

View File

@ -75,6 +75,14 @@ uploadArchives {
developerConnection 'scm:git@github.com:WhisperSystems/libaxolotl-android.git'
}
licenses {
license {
name 'GPLv3'
url 'https://www.gnu.org/licenses/gpl-3.0.txt'
distribution 'repo'
}
}
developers {
developer {
name 'Moxie Marlinspike'

View File

@ -16,4 +16,12 @@ subprojects {
'com.google.protobuf:protobuf-java:e0c1c64575c005601725e7c6a02cebf9e1285e888f756b2a1d73ffa8d725cc74',
]
}
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
}

View File

@ -63,6 +63,14 @@ uploadArchives {
developerConnection 'scm:git@github.com:WhisperSystems/libaxolotl-android.git'
}
licenses {
license {
name 'GPLv3'
url 'https://www.gnu.org/licenses/gpl-3.0.txt'
distribution 'repo'
}
}
developers {
developer {
name 'Moxie Marlinspike'
@ -81,3 +89,22 @@ task installArchives(type: Upload) {
}
}
}
task packageJavadoc(type: Jar, dependsOn: 'javadoc') {
from javadoc.destinationDir
classifier = 'javadoc'
}
task packageSources(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
artifacts {
archives(packageJavadoc) {
type = 'javadoc'
}
archives packageSources
}