Skip to content

Commit 08e9cdc

Browse files
committed
chore: add in vanniktech Gradle Maven Publish Plugin
1 parent c4024b2 commit 08e9cdc

File tree

6 files changed

+88
-56
lines changed

6 files changed

+88
-56
lines changed

.github/workflows/release.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ jobs:
3030
${{ runner.os }}-gradle-wrapper-
3131
- name: build artifact
3232
run: ./gradlew -Pversion=${{ env.NEW_VERSION }} build
33-
- name: upload artifact
34-
run: ./gradlew -Pversion=${{ env.NEW_VERSION }} publish
33+
- name: upload artifact to maven central portal
34+
run: ./gradlew -Pversion=${{ env.NEW_VERSION }} publishToMavenCentral --no-configuration-cache
3535
env:
36-
GITHUB_USERNAME: x-access-token
37-
GITHUB_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
36+
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
37+
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
38+
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_USERNAME }}
39+
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_PASSWORD }}

build.gradle.kts

+46-28
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2-
1+
import com.vanniktech.maven.publish.SonatypeHost
2+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
33

44
group = "io.github.MikAoJk"
5-
version = "1.0.0"
5+
version = System.getenv("NEW_VERSION") ?: "1.0.0"
66

7-
val junitJupiterVersion = "5.10.2"
8-
val kotlinVersion = "1.9.23"
9-
val javaVersion = JavaVersion.VERSION_21
7+
val junitJupiterVersion = "5.11.3"
8+
val kotlinVersion = "2.1.0"
109

1110
plugins {
12-
kotlin("jvm") version "1.9.23"
13-
`maven-publish`
11+
kotlin("jvm") version "2.1.0"
12+
id("com.vanniktech.maven.publish") version "0.30.0"
1413
}
1514

1615
repositories {
@@ -24,33 +23,52 @@ dependencies {
2423
testImplementation("org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion")
2524
}
2625

27-
publishing {
28-
repositories {
29-
maven {
30-
name = "GitHubPackages"
31-
url = uri("https://maven.pkg.github.com/MikAoJk/norwegian-holidays")
32-
credentials {
33-
username = System.getenv("GITHUB_USERNAME")
34-
password = System.getenv("GITHUB_PASSWORD")
26+
kotlin {
27+
compilerOptions {
28+
jvmTarget.set(JvmTarget.JVM_21)
29+
}
30+
}
31+
32+
mavenPublishing {
33+
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL, automaticRelease = true)
34+
signAllPublications()
35+
36+
coordinates(group.toString(), "norwegian-holidays", version.toString())
37+
38+
pom {
39+
name.set("norwegian-holidays")
40+
description.set("Library for validating a norwegian holidays")
41+
url.set("https://github.com/MikAoJk/norwegian-holidays")
42+
inceptionYear.set("2024")
43+
licenses {
44+
license {
45+
name.set("MIT License")
46+
url.set("https://opensource.org/licenses/MIT")
47+
distribution.set("https://github.com/MikAoJk/norwegian-holidays.git")
3548
}
3649
}
37-
}
38-
publications {
39-
create<MavenPublication>("mavenJava") {
40-
from(components["java"])
50+
51+
developers {
52+
developer {
53+
id.set("MikAoJk")
54+
name.set("Joakim Taule Kartveit")
55+
email.set("[email protected]")
56+
url.set("https://github.com/MikAoJk/")
57+
}
4158
}
59+
60+
scm {
61+
connection.set("scm:git:git://github.com/MikAoJk/norwegian-holidays.git")
62+
developerConnection.set("scm:git:https://github.com/MikAoJk/norwegian-holidays.git")
63+
url.set("https://github.com/MikAoJk/norwegian-holidays")
64+
}
65+
version = System.getenv("NEW_VERSION")
4266
}
43-
}
4467

45-
tasks {
68+
}
4669

47-
compileKotlin {
48-
kotlinOptions.jvmTarget = javaVersion.toString()
49-
}
50-
compileTestKotlin {
51-
kotlinOptions.jvmTarget = javaVersion.toString()
52-
}
5370

71+
tasks {
5472
test {
5573
useJUnitPlatform {}
5674
testLogging {

gradle/wrapper/gradle-wrapper.jar

-16.9 KB
Binary file not shown.
+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

gradlew

+22-13
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Darwin, MinGW, and NonStop.
5656
#
5757
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58+
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5959
# within the Gradle project.
6060
#
6161
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -80,13 +80,11 @@ do
8080
esac
8181
done
8282

83-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
84-
85-
APP_NAME="Gradle"
83+
# This is normally unused
84+
# shellcheck disable=SC2034
8685
APP_BASE_NAME=${0##*/}
87-
88-
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
89-
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
9088

9189
# Use the maximum available, or set MAX_FD != -1 to use that value.
9290
MAX_FD=maximum
@@ -133,22 +131,29 @@ location of your Java installation."
133131
fi
134132
else
135133
JAVACMD=java
136-
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134+
if ! command -v java >/dev/null 2>&1
135+
then
136+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
137137
138138
Please set the JAVA_HOME variable in your environment to match the
139139
location of your Java installation."
140+
fi
140141
fi
141142

142143
# Increase the maximum file descriptors if we can.
143144
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144145
case $MAX_FD in #(
145146
max*)
147+
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
148+
# shellcheck disable=SC2039,SC3045
146149
MAX_FD=$( ulimit -H -n ) ||
147150
warn "Could not query maximum file descriptor limit"
148151
esac
149152
case $MAX_FD in #(
150153
'' | soft) :;; #(
151154
*)
155+
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
156+
# shellcheck disable=SC2039,SC3045
152157
ulimit -n "$MAX_FD" ||
153158
warn "Could not set maximum file descriptor limit to $MAX_FD"
154159
esac
@@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then
193198
done
194199
fi
195200

196-
# Collect all arguments for the java command;
197-
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
198-
# shell script including quotes and variable substitutions, so put them in
199-
# double quotes to make sure that they get re-expanded; and
200-
# * put everything else in single quotes, so that it's not re-expanded.
201+
202+
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
203+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
204+
205+
# Collect all arguments for the java command:
206+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
207+
# and any embedded shellness will be escaped.
208+
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
209+
# treated as '${Hostname}' itself on the command line.
201210

202211
set -- \
203212
"-Dorg.gradle.appname=$APP_BASE_NAME" \

gradlew.bat

+11-10
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal
2626

2727
set DIRNAME=%~dp0
2828
if "%DIRNAME%"=="" set DIRNAME=.
29+
@rem This is normally unused
2930
set APP_BASE_NAME=%~n0
3031
set APP_HOME=%DIRNAME%
3132

@@ -42,11 +43,11 @@ set JAVA_EXE=java.exe
4243
%JAVA_EXE% -version >NUL 2>&1
4344
if %ERRORLEVEL% equ 0 goto execute
4445

45-
echo.
46-
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47-
echo.
48-
echo Please set the JAVA_HOME variable in your environment to match the
49-
echo location of your Java installation.
46+
echo. 1>&2
47+
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
48+
echo. 1>&2
49+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
50+
echo location of your Java installation. 1>&2
5051

5152
goto fail
5253

@@ -56,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
5657

5758
if exist "%JAVA_EXE%" goto execute
5859

59-
echo.
60-
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61-
echo.
62-
echo Please set the JAVA_HOME variable in your environment to match the
63-
echo location of your Java installation.
60+
echo. 1>&2
61+
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
62+
echo. 1>&2
63+
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
64+
echo location of your Java installation. 1>&2
6465

6566
goto fail
6667

0 commit comments

Comments
 (0)