Skip to content

Commit 1d4075e

Browse files
committed
reverting sdk/server changes
1 parent 3d3c98a commit 1d4075e

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

lib/sdk/server/build.gradle

+5-6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ plugins {
2222
id "com.github.johnrengelman.shadow" version "7.1.2"
2323
id "maven-publish"
2424
id "io.github.gradle-nexus.publish-plugin" version "1.3.0" apply false
25-
id "org.owasp.dependencycheck" version "12.1.0"
2625
id "idea"
2726
}
2827

@@ -198,7 +197,7 @@ compileJava.dependsOn 'generateJava'
198197
jar {
199198
// thin classifier means that the non-shaded non-fat jar is still available
200199
// but is opt-in since users will have to specify it.
201-
// classifier = 'thin'
200+
classifier = 'thin'
202201

203202
from configurations.commonClasses.collect { zipTree(it) }
204203

@@ -215,7 +214,7 @@ jar {
215214
// application is expected to provide SLF4J in the classpath if desired.
216215
shadowJar {
217216
// No classifier means that the shaded jar becomes the default artifact
218-
// classifier = ''
217+
classifier = ''
219218

220219
configurations = [ project.configurations.internal ]
221220

@@ -243,18 +242,18 @@ shadowJar {
243242
}
244243

245244
task testJar(type: Jar, dependsOn: testClasses) {
246-
// classifier = 'test'
245+
classifier = 'test'
247246
from sourceSets.test.output
248247
}
249248

250249
// custom tasks for creating source/javadoc jars
251250
task sourcesJar(type: Jar, dependsOn: classes) {
252-
// classifier = 'sources'
251+
classifier = 'sources'
253252
from sourceSets.main.allSource
254253
}
255254

256255
task javadocJar(type: Jar, dependsOn: javadoc) {
257-
// classifier = 'javadoc'
256+
classifier = 'javadoc'
258257
from javadoc.destinationDir
259258
}
260259

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

lib/sdk/server/src/main/java/com/launchdarkly/sdk/server/Version.java

+2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@ abstract class Version {
44
private Version() {}
55

66
// This constant is updated automatically by our Gradle script during a release, if the project version has changed
7+
// x-release-please-start-version
78
static final String SDK_VERSION = "7.7.0";
9+
// x-release-please-end
810
}

0 commit comments

Comments
 (0)