Fix maven publish
This commit is contained in:
parent
8b9004128b
commit
bd98e907ca
|
@ -3,9 +3,6 @@ apply plugin: "groovy"
|
||||||
apply plugin: 'jacoco'
|
apply plugin: 'jacoco'
|
||||||
apply plugin: 'maven-publish'
|
apply plugin: 'maven-publish'
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
|
||||||
targetCompatibility = 1.8
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
@ -30,7 +27,10 @@ dependencies {
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
all(MavenPublication) {
|
maven(MavenPublication) {
|
||||||
|
groupId = 'biz.nellemann.libs'
|
||||||
|
artifactId = 'libpaqle'
|
||||||
|
|
||||||
from components.java
|
from components.java
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
id = libpaqle
|
|
||||||
group = biz.nellemann.libs
|
|
||||||
version = 1.0.5
|
version = 1.0.5
|
||||||
licenses = ['APACHE-2.0'] // or something else
|
|
||||||
groovyVersion = 3.0.14
|
groovyVersion = 3.0.14
|
||||||
slf4jVersion = 2.0.6
|
slf4jVersion = 2.0.6
|
||||||
spockVersion = 2.3-groovy-3.0
|
spockVersion = 2.3-groovy-3.0
|
||||||
siteUrl = https://bitbucket.org/mnellemann/libpaqle
|
|
||||||
gitUrl = https://bitbucket.org/mnellemann/libpaqle.git
|
|
||||||
|
|
Loading…
Reference in a new issue