File tree Expand file tree Collapse file tree 2 files changed +0
-25
lines changed Expand file tree Collapse file tree 2 files changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -3,31 +3,11 @@ plugins {
3
3
id(" org.gradle.java-library" )
4
4
id(" org.gradle.maven-publish" )
5
5
id(" org.gradle.signing" )
6
- id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1.0"
7
6
id(" org.jetbrains.dokka" ).version(" 2.0.0" ).apply (false )
8
7
id(" org.jetbrains.dokka-javadoc" ).version(" 2.0.0" ).apply (false )
9
8
}
10
9
11
10
// library version is defined in gradle.properties
12
11
val libraryVersion: String by project
13
-
14
- // These properties are required here so that the nexus publish-plugin
15
- // finds a staging profile with the correct group (group is otherwise set as "")
16
- // and knows whether to publish to a SNAPSHOT repository or not
17
- // https://github.com/gradle-nexus/publish-plugin#applying-the-plugin
18
12
group = " org.bitcoindevkit"
19
13
version = libraryVersion
20
-
21
- nexusPublishing {
22
- repositories {
23
- create(" sonatype" ) {
24
- nexusUrl.set(uri(" https://s01.oss.sonatype.org/service/local/" ))
25
- snapshotRepositoryUrl.set(uri(" https://s01.oss.sonatype.org/content/repositories/snapshots/" ))
26
-
27
- val ossrhUsername: String? by project
28
- val ossrhPassword: String? by project
29
- username.set(ossrhUsername)
30
- password.set(ossrhPassword)
31
- }
32
- }
33
- }
Original file line number Diff line number Diff line change @@ -111,11 +111,6 @@ signing {
111
111
if (project.hasProperty(" localBuild" )) {
112
112
isRequired = false
113
113
}
114
-
115
- val signingKeyId: String? by project
116
- val signingKey: String? by project
117
- val signingPassword: String? by project
118
- useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
119
114
sign(publishing.publications)
120
115
}
121
116
You can’t perform that action at this time.
0 commit comments