File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ android.enableJetifier=true
2020# Kotlin code style for this project: "official" or "obsolete":
2121kotlin.code.style =official
2222
23- GROUP =org.reduxkotlin.redux-kotlin
23+ GROUP =org.reduxkotlin
2424VERSION_NAME =0.5.2
2525
2626POM_ARTIFACT_ID =reduxkotlin
Original file line number Diff line number Diff line change @@ -118,6 +118,13 @@ afterEvaluate {
118118
119119apply 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+
121128jvmTest {
122129 useJUnitPlatform {
123130 includeEngines ' spek2'
Original file line number Diff line number Diff line change @@ -133,6 +133,13 @@ afterEvaluate {
133133
134134apply 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+
136143jvmTest {
137144 useJUnitPlatform {
138145 includeEngines ' spek2'
You can’t perform that action at this time.
0 commit comments