Skip to content

Commit 83be2c0

Browse files
committed
Merge pull request #223 from rpmoore/fat_jar_logging
Fat jar logging
2 parents 524bcba + e3575e1 commit 83be2c0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
allprojects {
1717
group = 'com.spectralogic.ds3'
18-
version = '3.2.0-RC8'
18+
version = '3.2.0-RC9'
1919
}
2020

2121
subprojects {
@@ -30,19 +30,18 @@ subprojects {
3030
}
3131

3232
dependencies {
33-
compile 'org.slf4j:slf4j-api:1.7.16'
34-
compile 'org.slf4j:jcl-over-slf4j:1.7.16'
33+
compile 'org.slf4j:slf4j-api:1.7.20'
3534
testCompile ('org.mockito:mockito-core:1.10.19') {
3635
exclude group: 'org.hamcrest'
3736
}
3837

3938
testCompile 'junit:junit:4.12'
40-
testCompile 'org.slf4j:slf4j-simple:1.7.16'
39+
testCompile 'org.slf4j:slf4j-simple:1.7.20'
4140
}
4241
}
4342

4443
task wrapper(type: Wrapper) {
45-
gradleVersion = '2.11'
44+
gradleVersion = '2.12'
4645
}
4746

4847
project(':ds3-sdk-integration') {

ds3-sdk/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ shadowJar {
3030
relocate 'org.apache', 'ds3fatjar.org.apache'
3131
relocate 'org.codehaus', 'ds3fatjar.org.codehaus'
3232
relocate 'com.fasterxml', 'ds3fatjar.com.fasterxml'
33-
relocate 'org.slf4j', 'ds3fatjar.org.slf4j'
3433
dependencies {
3534
exclude(dependency('org.hamcrest:hamcrest-library:1.3'))
3635
exclude(dependency('org.mockito:mockito-core:1.10.19'))
3736
exclude(dependency('junit:junit:4.12'))
37+
exclude(dependency('org.slf4j:slf4j-api:1.7.16'))
38+
exclude(dependency('org.slf4j:slf4j-simple:1.7.20'))
3839
}
3940
}
4041

gradle/wrapper/gradle-wrapper.jar

2 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Feb 10 11:19:18 MST 2016
1+
#Fri Apr 01 09:11:00 MDT 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.zip

gradlew.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ echo location of your Java installation.
4646
goto fail
4747

4848
:init
49-
@rem Get command-line arguments, handling Windowz variants
49+
@rem Get command-line arguments, handling Windows variants
5050

5151
if not "%OS%" == "Windows_NT" goto win9xME_args
5252
if "%@eval[2+2]" == "4" goto 4NT_args

0 commit comments

Comments
 (0)