Skip to content

Commit 01fd799

Browse files
authored
Merge pull request #30 from ferPrieto/fprieto/chore/Publishing-Config-Update
Maven Publish config update
2 parents aaea134 + a757e56 commit 01fd799

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.idea/.name

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

audiowaveformview/build.gradle.kts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ afterEvaluate {
9191
create<MavenPublication>("maven") {
9292
from(components["release"])
9393

94-
groupId = "com.github.ferPrieto"
95-
artifactId = "audiowaveformview"
94+
groupId = "ferPrieto"
95+
artifactId = "timelineview"
9696
version = gitVersion().removePrefix("v").removeSuffix(".dirty")
97-
97+
9898
pom {
99-
name.set("AudioWaveformView")
100-
description.set("A custom Android view that displays audio waveforms with scrollable timeline interface similar to SoundCloud")
101-
url.set("https://github.com/ferPrieto/SoundLine")
99+
name.set("TimelineView")
100+
description.set("A synchronized dual-view timeline visualization component for Android with native Compose support")
101+
url.set("https://github.com/ferPrieto/TimelineView")
102102

103103
licenses {
104104
license {
@@ -116,9 +116,9 @@ afterEvaluate {
116116
}
117117

118118
scm {
119-
connection.set("scm:git:github.com/ferPrieto/SoundLine.git")
120-
developerConnection.set("scm:git:ssh://github.com/ferPrieto/SoundLine.git")
121-
url.set("https://github.com/ferPrieto/SoundLine/tree/master")
119+
connection.set("scm:git:github.com/ferPrieto/TimelineView.git")
120+
developerConnection.set("scm:git:ssh://github.com/ferPrieto/TimelineView.git")
121+
url.set("https://github.com/ferPrieto/TimelineView/tree/master")
122122
}
123123
}
124124
}
@@ -127,7 +127,7 @@ afterEvaluate {
127127
repositories {
128128
maven {
129129
name = "GitHubPackages"
130-
url = uri("https://maven.pkg.github.com/ferPrieto/SoundLine")
130+
url = uri("https://maven.pkg.github.com/ferPrieto/TimelineView")
131131
credentials {
132132
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME") ?: System.getenv("GITHUB_ACTOR")
133133
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN") ?: System.getenv("GITHUB_TOKEN")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_name">SoundLine</string>
2+
<string name="app_name">TimelineView</string>
33
</resources>

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ dependencyResolutionManagement {
1515
}
1616

1717
include(":app", ":audiowaveformview")
18-
rootProject.name = "SoundLine"
18+
rootProject.name = "TimelineView"

0 commit comments

Comments
 (0)