Skip to content
This repository was archived by the owner on Feb 26, 2023. It is now read-only.

Commit 0bd6848

Browse files
Updated the version number (1.2.2 has now been released). Added comments describing the publication process.
Note that 1.2.1 was the last release to support Java 1.8.
1 parent a4fdcb4 commit 0bd6848

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

build.gradle

+9-5
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ plugins {
2121
id 'io.github.gradle-nexus.publish-plugin' version "$nexus_plugin_version"
2222
}
2323
/**
24-
* to publish:
25-
* ./gradlew clean publish
26-
*/
27-
/* see: https://github.com/gradle-nexus/publish-plugin, https://h4pehl.medium.com/publish-your-gradle-artifacts-to-maven-central-f74a0af085b1 */
24+
* to publish: (just run `./gradlew clean publish closeAndReleaseStagingRepository` if you're feeling confident)
25+
* 1 `./gradlew clean publish`
26+
* 2 visit https://oss.sonatype.org/#nexus-search;quick~com.thinkinglogic.builder to confirm it looks correct
27+
* 3 visit https://oss.sonatype.org/#stagingRepositories and close then release the staging repository
28+
*
29+
* Note that this requires your pgp key to be publically identifiable, e.g. at https://keys.openpgp.org/
30+
* see: https://github.com/gradle-nexus/publish-plugin, https://h4pehl.medium.com/publish-your-gradle-artifacts-to-maven-central-f74a0af085b1
31+
**/
2832
nexusPublishing {
2933
repositories {
3034
sonatype {
@@ -37,7 +41,7 @@ nexusPublishing {
3741

3842
allprojects {
3943
group = 'com.thinkinglogic.builder'
40-
version = '1.2.1'
44+
version = '1.2.3'
4145
apply plugin: "kotlin"
4246

4347
repositories {

0 commit comments

Comments
 (0)