File tree Expand file tree Collapse file tree 2 files changed +8
-12
lines changed
lib/java-server-sdk-redis-store Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change
1
+ # Ignore Gradle project-specific cache directory
2
+ .gradle
3
+
4
+ # Ignore Gradle build output directory
5
+ build
6
+ bin
Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ plugins {
12
12
id " checkstyle"
13
13
id " signing"
14
14
id " maven-publish"
15
- id " de.marcphilipp.nexus-publish" version " 0.3.0"
16
- id " io.codearte.nexus-staging" version " 0.30.0"
15
+ id " io.github.gradle-nexus.publish-plugin" version " 1.3.0"
17
16
id " idea"
18
17
}
19
18
@@ -92,12 +91,6 @@ idea {
92
91
}
93
92
}
94
93
95
-
96
- nexusStaging {
97
- packageGroup = " com.launchdarkly"
98
- numberOfRetries = 40 // we've seen extremely long delays in closing repositories
99
- }
100
-
101
94
publishing {
102
95
publications {
103
96
mavenJava(MavenPublication ) {
@@ -141,10 +134,7 @@ publishing {
141
134
nexusPublishing {
142
135
clientTimeout = java.time.Duration . ofMinutes(2 ) // we've seen extremely long delays in creating repositories
143
136
repositories {
144
- sonatype {
145
- username = ossrhUsername
146
- password = ossrhPassword
147
- }
137
+ sonatype()
148
138
}
149
139
}
150
140
You can’t perform that action at this time.
0 commit comments