This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
update to camden #612
Open
mariuszs
wants to merge
1
commit into
master
Choose a base branch
from
tech/update_to_camden
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
update to camden #612
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ buildscript { | |
maven { url "https://plugins.gradle.org/m2/" } //for sonarqube plugin | ||
} | ||
dependencies { | ||
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.3.8.RELEASE" | ||
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.4.5.RELEASE" | ||
classpath 'com.toomuchcoding:uptodate-gradle-plugin:+' | ||
classpath "com.ofg:micro-common-release:0.1.18" | ||
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:+" | ||
|
@@ -53,35 +53,12 @@ apply from: "${rootProject.buildDir}/release/gradle/release.gradle" | |
//NOTE: All release and publishing modifications (including further scmVersion closure) should be put AFTER the apply of publish.gradle and/or release.gradle | ||
// (to be not overridden by the default values applied in those files) | ||
|
||
|
||
allprojects { | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
jcenter() | ||
} | ||
|
||
configurations { | ||
all { | ||
resolutionStrategy { | ||
exclude group: 'log4j', module: 'log4j' | ||
force 'org.apache.httpcomponents:httpclient:4.5.2' | ||
force 'org.jboss.logging:jboss-logging:3.3.0.Final' | ||
|
||
eachDependency { DependencyResolveDetails details -> | ||
if (details.requested.group == 'org.slf4j') { details.useVersion '1.7.21' } | ||
if (details.requested.group == 'com.fasterxml.jackson.core') { details.useVersion '2.6.7' } | ||
|
||
// To prevent an accidental usage of groovy-all.jar and groovy.jar in different versions | ||
// all modularized Groovy jars are replaced with groovy-all.jar by default. | ||
if (details.requested.group == 'org.codehaus.groovy' && details.requested.name != "groovy-all") { | ||
details.useTarget("org.codehaus.groovy:groovy-all:${details.requested.version}") | ||
} | ||
if (details.requested.group == 'org.aspectj') { details.useVersion '1.8.9' } | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
task addHashFile << { | ||
|
@@ -105,7 +82,7 @@ configure(srcSubprojects) { | |
|
||
dependencyManagement { | ||
imports { | ||
mavenBom 'org.springframework.cloud:spring-cloud-starter-parent:Brixton.SR7' | ||
mavenBom 'org.springframework.cloud:spring-cloud-starter-parent:Camden.SR6' | ||
} | ||
|
||
dependencies { | ||
|
@@ -122,11 +99,11 @@ configure(srcSubprojects) { | |
dependency "ch.qos.logback:logback-core:1.1.7" | ||
dependency "ch.qos.logback:logback-classic:1.1.7" | ||
dependency "com.jayway.restassured:rest-assured:2.9.0" | ||
dependency "com.github.tomakehurst:wiremock:2.1.6" | ||
dependency "com.github.tomakehurst:wiremock:2.1.7" | ||
dependency "cglib:cglib-nodep:3.2.5" | ||
dependency "org.objenesis:objenesis:2.5.1" | ||
|
||
dependencySet(group:'org.spockframework', version: '1.0-groovy-2.4') { | ||
dependencySet(group:'org.spockframework', version: '1.1-groovy-2.4-rc-4') { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
entry "spock-core" | ||
entry "spock-spring" | ||
} | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
...g-base/src/test/groovy/com/ofg/infrastructure/tracing/TracingPropertiesEnablerSpec.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍