Skip to content

Commit

Permalink
Merge pull request #223 from rpmoore/fat_jar_logging
Browse files Browse the repository at this point in the history
Fat jar logging
  • Loading branch information
RachelTucker committed Apr 1, 2016
2 parents 524bcba + e3575e1 commit 83be2c0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

allprojects {
group = 'com.spectralogic.ds3'
version = '3.2.0-RC8'
version = '3.2.0-RC9'
}

subprojects {
Expand All @@ -30,19 +30,18 @@ subprojects {
}

dependencies {
compile 'org.slf4j:slf4j-api:1.7.16'
compile 'org.slf4j:jcl-over-slf4j:1.7.16'
compile 'org.slf4j:slf4j-api:1.7.20'
testCompile ('org.mockito:mockito-core:1.10.19') {
exclude group: 'org.hamcrest'
}

testCompile 'junit:junit:4.12'
testCompile 'org.slf4j:slf4j-simple:1.7.16'
testCompile 'org.slf4j:slf4j-simple:1.7.20'
}
}

task wrapper(type: Wrapper) {
gradleVersion = '2.11'
gradleVersion = '2.12'
}

project(':ds3-sdk-integration') {
Expand Down
3 changes: 2 additions & 1 deletion ds3-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ shadowJar {
relocate 'org.apache', 'ds3fatjar.org.apache'
relocate 'org.codehaus', 'ds3fatjar.org.codehaus'
relocate 'com.fasterxml', 'ds3fatjar.com.fasterxml'
relocate 'org.slf4j', 'ds3fatjar.org.slf4j'
dependencies {
exclude(dependency('org.hamcrest:hamcrest-library:1.3'))
exclude(dependency('org.mockito:mockito-core:1.10.19'))
exclude(dependency('junit:junit:4.12'))
exclude(dependency('org.slf4j:slf4j-api:1.7.16'))
exclude(dependency('org.slf4j:slf4j-simple:1.7.20'))
}
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Feb 10 11:19:18 MST 2016
#Fri Apr 01 09:11:00 MDT 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.zip
2 changes: 1 addition & 1 deletion gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ echo location of your Java installation.
goto fail

:init
@rem Get command-line arguments, handling Windowz variants
@rem Get command-line arguments, handling Windows variants

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

0 comments on commit 83be2c0

Please sign in to comment.