aggiunto autopublish delle librerie del client

This commit is contained in:
2016-01-24 15:46:18 +01:00
parent 3cb6a2a7b4
commit 65d970c28f
2 changed files with 22 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'maven-publish'
group='org.jpacrepo'
sourceCompatibility = 1.8
//version = '1.0'
logging.captureStandardOutput LogLevel.INFO
@@ -70,3 +70,17 @@ task serverJar(type: Jar) {
}
}
publishing {
publications {
maven(MavenPublication) {
groupId project.group
artifactId project.name + "-common"
version "1.0"
artifact clientJar {
//classifier "sources"
}
}
}
}