Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {

allprojects {
group = 'com.launchdarkly'
version = "2.0.0-SNAPSHOT"
version = "2.0.1"
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
Expand Down Expand Up @@ -94,9 +94,14 @@ githubPages {

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

// Don't shade or include slf4j
dependencies{
exclude(dependency('org.slf4j:.*:.*'))
}

// Shade all jars except for launchdarkly
relocate('com', 'com.launchdarkly.shaded.com') {
exclude("com.launchdarkly.client.*")
Expand Down