We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2907ad commit a040f34Copy full SHA for a040f34
1 file changed
morpher-api/build.gradle.kts
@@ -32,15 +32,24 @@ tasks {
32
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
33
}
34
35
-// publishing{
36
-// publications{
37
-// create<MavenPublication>("mavenJava"){
38
-// groupId = "com.github.luiox"
39
-// artifactId = "morpher-api"
40
-// version = "1.6"
41
-// }
+// repositories {
+// maven {
+// //当前项目根目录
+// url = uri("$rootDir/repo")
42
// }
43
+
+ publishing{
+ publications{
44
+ create<MavenPublication>("mavenJava"){
45
+ groupId = "com.github.luiox"
46
+ artifactId = "morpher-api"
47
+ version = "1.6"
48
49
+ artifact(jar)
50
+ }
51
52
53
54
55
0 commit comments