Fixed a few bugs in the maven central script
This commit is contained in:
parent
e65fde736b
commit
7e475b5472
|
@ -1,6 +1,7 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
id "jacoco"
|
id "jacoco"
|
||||||
|
// id "com.vanniktech.maven.publish" version "0.28.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType(JavaCompile) {
|
tasks.withType(JavaCompile) {
|
||||||
|
@ -329,9 +330,6 @@ tasks.withType(PublishToMavenLocal) {
|
||||||
//Maven central Start
|
//Maven central Start
|
||||||
//Disabling due to java8 incompat, only needed to manually publishing anyways
|
//Disabling due to java8 incompat, only needed to manually publishing anyways
|
||||||
|
|
||||||
//plugins {
|
|
||||||
// id "com.vanniktech.maven.publish" version "0.28.0"
|
|
||||||
//}
|
|
||||||
//signing.useGpgCmd()
|
//signing.useGpgCmd()
|
||||||
//
|
//
|
||||||
//import com.vanniktech.maven.publish.SonatypeHost
|
//import com.vanniktech.maven.publish.SonatypeHost
|
||||||
|
@ -368,7 +366,7 @@ tasks.withType(PublishToMavenLocal) {
|
||||||
//
|
//
|
||||||
// scm {
|
// scm {
|
||||||
// connection = 'scm:git:git://github.com/Speiger/Primitive-Collections.git'
|
// connection = 'scm:git:git://github.com/Speiger/Primitive-Collections.git'
|
||||||
// developerConnection = 'scm:git:ssh://github.com/Speiger/Primitive-Collections.git'
|
// developerConnection = 'scm:git:ssh://github.com:Speiger/Primitive-Collections.git'
|
||||||
// url = 'https://github.com/Speiger/Primitive-Collections'
|
// url = 'https://github.com/Speiger/Primitive-Collections'
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
|
@ -378,3 +376,4 @@ tasks.withType(PublishToMavenLocal) {
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
//}
|
//}
|
||||||
|
//
|
|
@ -3,4 +3,4 @@ org.gradle.jvmargs=-Xmx3G
|
||||||
maxMemory = 1024m
|
maxMemory = 1024m
|
||||||
testThreads = 4
|
testThreads = 4
|
||||||
|
|
||||||
RELEASE_VERSION = '0.9.0'
|
RELEASE_VERSION = 0.9.0
|
Loading…
Reference in New Issue