File tree Expand file tree Collapse file tree 1 file changed +31
-4
lines changed Expand file tree Collapse file tree 1 file changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,37 @@ publishing {
84
84
publications {
85
85
create<MavenPublication >(" main" ) {
86
86
from(components[" java" ])
87
+
88
+ versionMapping {
89
+ usage(" java-api" ) { fromResolutionOf(" runtimeClasspath" ) }
90
+ usage(" java-runtime" ) { fromResolutionResult() }
91
+ }
92
+
93
+ pom {
94
+ name.set(project.name)
95
+ description.set(project.description)
96
+ url.set(" https://github.com/clojurephant/clojurephant-tooling" )
97
+
98
+ developers {
99
+ developer {
100
+ name.set(" Andrew Oberstar" )
101
+
102
+ }
103
+ }
104
+
105
+ licenses {
106
+ license {
107
+ name.set(" Apache License 2.0" )
108
+ url.set(" https://github.com/clojurephant/jovial/blob/main/LICENSE" )
109
+ }
110
+ }
111
+
112
+ scm {
113
+ url.set(" https://github.com/clojurephant/clojurephant-tooling" )
114
+ connection.set(
" scm:git:[email protected] :clojurephant/clojurephant-tooling.git" )
115
+ developerConnection.set(
" scm:git:[email protected] :clojurephant/clojurephant-tooling.git" )
116
+ }
117
+ }
87
118
}
88
119
}
89
120
}
90
-
91
- tasks.withType<GenerateModuleMetadata >() {
92
- enabled = false
93
- }
You can’t perform that action at this time.
0 commit comments