Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 1e4d88f

Browse files
authored
Merge pull request #72 from launchdarkly/dr/slf4j
Remove SLF4J from artifact
2 parents 3b54ca7 + 4a460a6 commit 1e4d88f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919

2020
allprojects {
2121
group = 'com.launchdarkly'
22-
version = "2.0.0-SNAPSHOT"
22+
version = "2.0.1"
2323
sourceCompatibility = 1.7
2424
targetCompatibility = 1.7
2525
}
@@ -94,9 +94,14 @@ githubPages {
9494

9595
shadowJar {
9696
baseName = 'launchdarkly-client'
97-
//no classifier means that the fat + shaded jar becomes the default artifact
97+
//no classifier means that the shaded jar becomes the default artifact
9898
classifier = ''
9999

100+
// Don't shade or include slf4j
101+
dependencies{
102+
exclude(dependency('org.slf4j:.*:.*'))
103+
}
104+
100105
// Shade all jars except for launchdarkly
101106
relocate('com', 'com.launchdarkly.shaded.com') {
102107
exclude("com.launchdarkly.client.*")

0 commit comments

Comments
 (0)