File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ android.enableJetifier=true
20
20
# Kotlin code style for this project: "official" or "obsolete":
21
21
kotlin.code.style =official
22
22
23
- GROUP =org.reduxkotlin.redux-kotlin
23
+ GROUP =org.reduxkotlin
24
24
VERSION_NAME =0.5.2
25
25
26
26
POM_ARTIFACT_ID =reduxkotlin
Original file line number Diff line number Diff line change @@ -118,6 +118,13 @@ afterEvaluate {
118
118
119
119
apply from : rootProject. file(' gradle/publish.gradle' )
120
120
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
+
121
128
jvmTest {
122
129
useJUnitPlatform {
123
130
includeEngines ' spek2'
Original file line number Diff line number Diff line change @@ -133,6 +133,13 @@ afterEvaluate {
133
133
134
134
apply from : rootProject. file(' gradle/publish.gradle' )
135
135
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
+
136
143
jvmTest {
137
144
useJUnitPlatform {
138
145
includeEngines ' spek2'
You can’t perform that action at this time.
0 commit comments