We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 383ed4a commit 4ad8b50Copy full SHA for 4ad8b50
1 file changed
debugMenu/build.gradle.kts
@@ -5,12 +5,15 @@ plugins {
5
alias(libs.plugins.maven.publish)
6
}
7
8
+group = "com.github.Tapadoo"
9
+version = "1.0.6"
10
+
11
publishing {
12
publications {
13
register<MavenPublication>("default") {
- groupId = "com.tapadoo"
- artifactId = "debugmenu"
- version = "1.0.6"
14
+ groupId = project.group.toString()
15
+ artifactId = "DebugMenu"
16
+ version = project.version.toString()
17
18
afterEvaluate {
19
from(components["default"])
@@ -81,4 +84,3 @@ dependencies {
81
84
androidTestImplementation("androidx.test.ext:junit:1.2.1")
82
85
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
83
86
-
0 commit comments