Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Upgrading to cerberus-client-6.1.0 that is only compatible with Java …
Browse files Browse the repository at this point in the history
…8 or newer (#4)
  • Loading branch information
tlisonbee authored and mayitbeegh committed Oct 4, 2018
1 parent 00e3b9c commit a4fd93a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ apply plugin: 'maven'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'

sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8

apply from: file('gradle/dependencies.gradle')
apply from: file('gradle/check.gradle')
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
version=1.0.0
version=2.0.0
groupId=com.nike
artifactId=cerberus-spring-boot-client
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
compile "org.springframework.boot:spring-boot-autoconfigure:1.5.2.RELEASE"

// Cerberus dependencies
compile "com.nike:cerberus-client:5.3.1"
compile "com.nike:cerberus-client:6.1.0"

// Test dependencies
testRuntime 'org.slf4j:slf4j-simple:1.7.25'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.springframework.context.annotation.Configuration;

/**
* Spring configuration class that provides a VaultClient for interacting with Cerberus.
* Spring configuration class that provides a CerberusClient for interacting with Cerberus.
* <p>
* This class is configured via {@link CerberusClientSpringBootProperties} which has
* one required setting for accessing Cerberus, e.g. in your {@code application.properties}:
Expand All @@ -46,7 +46,7 @@ public CerberusClientSpringBootConfiguration(CerberusClientSpringBootProperties
}

/**
* Instantiate a VaultClient.
* Instantiate a CerberusClient.
*
* @see <a href="http://engineering.nike.com/cerberus/docs/user-guide/quick-start">Cerberus Quick Start Guide</a>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ public void testForExceptionOnMissingRequiredProperty() throws Exception {
new CerberusClientSpringBootConfiguration(new CerberusClientSpringBootProperties()).cerberusClient();
}

}
}

0 comments on commit a4fd93a

Please sign in to comment.