Merged colljos-cordapp_template-clientjars into master

This commit is contained in:
Jose Coll 2016-10-14 15:45:22 +01:00
commit d7ca215f7d

View File

@ -1,5 +1,6 @@
apply plugin: 'kotlin'
apply plugin: QuasarPlugin
apply plugin: DefaultPublishTasks
repositories {
mavenLocal()
@ -37,6 +38,18 @@ sourceSets {
}
}
publishing {
publications {
clients(MavenPublication) {
from components.java
artifactId 'client'
artifact sourceJar
artifact javadocJar
}
}
}
// To find potential version conflicts, run "gradle htmlDependencyReport" and then look in
// build/reports/project/dependencies/index.html for green highlighted parts of the tree.