Skip to content

Commit 2a97d01

Browse files
committed
1.0.0 release for now
1 parent 374b027 commit 2a97d01

4 files changed

Lines changed: 50 additions & 50 deletions

File tree

.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<attribute name="gradle_used_by_scope" value="builder"/>
3333
</attributes>
3434
</classpathentry>
35-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
35+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21/"/>
3636
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
3737
<classpathentry kind="output" path="bin/default"/>
3838
</classpath>

build.gradle

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id 'java-library'
33
id "jacoco"
4+
id "com.vanniktech.maven.publish" version "0.28.0"
45
}
56

67
tasks.withType(JavaCompile) {
@@ -331,50 +332,49 @@ tasks.withType(PublishToMavenLocal) {
331332
//Maven central Start
332333
//Disabling due to java8 incompat, only needed to manually publishing anyways
333334

334-
//signing.useGpgCmd()
335-
//
336-
//import com.vanniktech.maven.publish.SonatypeHost
337-
//import com.vanniktech.maven.publish.JavaLibrary
338-
//import com.vanniktech.maven.publish.JavadocJar
339-
//
340-
//mavenPublishing {
341-
// configure(new JavaLibrary(new JavadocJar.None(), true))
342-
//}
343-
//
344-
//mavenPublishing {
345-
// publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
346-
//
347-
// signAllPublications()
348-
// pom {
349-
// name = 'Primitive Collections'
350-
// description = 'A Primitive Collection library that reduces memory usage and improves performance'
351-
// url = 'https://github.com/Speiger/Primitive-Collections'
352-
// version = project.version
353-
// group = 'io.github.speiger'
354-
// licenses {
355-
// license {
356-
// name = 'The Apache License, Version 2.0'
357-
// url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
358-
// }
359-
// }
360-
//
361-
// developers {
362-
// developer {
363-
// id = 'speiger'
364-
// name = 'Speiger'
365-
// }
366-
// }
367-
//
368-
// scm {
369-
// connection = 'scm:git:git://github.com/Speiger/Primitive-Collections.git'
370-
// developerConnection = 'scm:git:ssh://github.com:Speiger/Primitive-Collections.git'
371-
// url = 'https://github.com/Speiger/Primitive-Collections'
372-
// }
373-
//
374-
// issueManagement {
375-
// system = 'github'
376-
// url = 'https://github.com/Speiger/Primitive-Collections/issues'
377-
// }
378-
// }
379-
//}
380-
//
335+
signing.useGpgCmd()
336+
337+
import com.vanniktech.maven.publish.SonatypeHost
338+
import com.vanniktech.maven.publish.JavaLibrary
339+
import com.vanniktech.maven.publish.JavadocJar
340+
341+
mavenPublishing {
342+
configure(new JavaLibrary(new JavadocJar.None(), true))
343+
}
344+
345+
mavenPublishing {
346+
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
347+
348+
signAllPublications()
349+
pom {
350+
name = 'Primitive Collections'
351+
description = 'A Primitive Collection library that reduces memory usage and improves performance'
352+
url = 'https://github.com/Speiger/Primitive-Collections'
353+
version = project.version
354+
group = 'io.github.speiger'
355+
licenses {
356+
license {
357+
name = 'The Apache License, Version 2.0'
358+
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
359+
}
360+
}
361+
362+
developers {
363+
developer {
364+
id = 'speiger'
365+
name = 'Speiger'
366+
}
367+
}
368+
369+
scm {
370+
connection = 'scm:git:git://github.com/Speiger/Primitive-Collections.git'
371+
developerConnection = 'scm:git:ssh://github.com:Speiger/Primitive-Collections.git'
372+
url = 'https://github.com/Speiger/Primitive-Collections'
373+
}
374+
375+
issueManagement {
376+
system = 'github'
377+
url = 'https://github.com/Speiger/Primitive-Collections/issues'
378+
}
379+
}
380+
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ org.gradle.jvmargs=-Xmx3G
33
maxMemory = 2048m
44
testThreads = 4
55

6-
RELEASE_VERSION = 0.9.0
6+
RELEASE_VERSION = 1.0.0

jitpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
jdk:
2-
- openjdk9
2+
- openjdk21
33
install:
44
- chmod +x ./gradlew
55
- ./gradlew build publishToMavenLocal

0 commit comments

Comments
 (0)