Skip to content

Commit 8fefda7

Browse files
committed
adjust maven group & name
1 parent 8cfdafd commit 8fefda7

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
2222

23-
GROUP=org.reduxkotlin.redux-kotlin
23+
GROUP=org.reduxkotlin
2424
VERSION_NAME=0.5.2
2525

2626
POM_ARTIFACT_ID=reduxkotlin

lib-threadsafe/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,13 @@ afterEvaluate {
118118

119119
apply from: rootProject.file('gradle/publish.gradle')
120120

121+
publishing {
122+
publications.all {
123+
// Rewrite all artifacts from using the project name to just 'runtime'.
124+
artifactId = artifactId.replace(project.name, 'redux-kotlin')
125+
}
126+
}
127+
121128
jvmTest {
122129
useJUnitPlatform {
123130
includeEngines 'spek2'

lib/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,13 @@ afterEvaluate {
133133

134134
apply from: rootProject.file('gradle/publish.gradle')
135135

136+
publishing {
137+
publications.all {
138+
// Rewrite all artifacts from using the project name to just 'runtime'.
139+
artifactId = artifactId.replace(project.name, 'redux-kotlin')
140+
}
141+
}
142+
136143
jvmTest {
137144
useJUnitPlatform {
138145
includeEngines 'spek2'

0 commit comments

Comments
 (0)