Skip to content

Commit 011277b

Browse files
committed
build: update test module configuration
1 parent 47870b4 commit 011277b

File tree

4 files changed

+55
-11
lines changed

4 files changed

+55
-11
lines changed

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 41 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradle.properties

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,16 @@ kotlin.code.style=official
2323
android.nonTransitiveRClass=true
2424

2525
# POM values
26-
GROUP=io.monstarlab
27-
POM_ARTIFACT_ID=mosaic
26+
GROUP=io.monstarlab.mosaic
2827
VERSION_NAME=0.0.1-SNAPSHOT
2928

3029
POM_NAME=Mosaic
31-
POM_DESCRIPTION=A collection of UI components .
30+
POM_DESCRIPTION=A collection of UI components.
3231
POM_INCEPTION_YEAR=2024
3332
POM_URL=https://github.com/monstar-lab-oss/android-mosaic
3433

35-
POM_LICENSE_NAME=The Apache Software License, Version 2.0
36-
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
34+
POM_LICENSE_NAME=MIT License
35+
POM_LICENSE_URL=https://raw.githubusercontent.com/monstar-lab-oss/android-mosaic/main/LICENSE
3736
POM_LICENSE_DIST=repo
3837

3938
POM_SCM_URL=scm:[email protected]:monstar-lab-oss/android-mosaic.git
@@ -43,7 +42,4 @@ POM_SCM_DEV_CONNECTION=scm:[email protected]:monstar-lab-oss/android-mosaic.git
4342
POM_DEVELOPER_ID=Monstarlab
4443
POM_DEVELOPER_NAME=Monstarlab
4544
POM_DEVELOPER_EMAIL=[email protected]
46-
POM_DEVELOPER_URL=https://github.com/username/
47-
48-
mavenCentralUsername=username
49-
mavenCentralPassword=the_password
45+
POM_DEVELOPER_URL=https://github.com/monstar-lab-oss

lib/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import com.vanniktech.maven.publish.AndroidSingleVariantLibrary
12
import com.vanniktech.maven.publish.SonatypeHost
23

34
plugins {
@@ -24,8 +25,9 @@ android {
2425
}
2526
}
2627
}
27-
mavenPublishing{
28-
publishToMavenCentral(SonatypeHost.DEFAULT)
28+
mavenPublishing {
29+
configure(AndroidSingleVariantLibrary("release"))
30+
publishToMavenCentral(SonatypeHost.S01)
2931
signAllPublications()
3032
}
3133

lib/gradle.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
POM_NAME=Test Library
2+
POM_DESCRIPTION=Test Library
3+
POM_INCEPTION_YEAR=2024
4+
POM_ARTIFACT_ID=lib
5+
POM_PACKAGING=aar

0 commit comments

Comments
 (0)