8000 Dependency upgrades prior to M1 by mmoayyed · Pull Request #1770 · apereo/cas · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Dependency upgrades prior to M1 #1770

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into apereo:master from
May 13, 2016
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
dependencies {
classpath "nl.eveoh:gradle-aspectj:1.6"
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
classpath "com.netflix.nebula:gradle-lint-plugin:0.10.0"
classpath "com.netflix.nebula:gradle-lint-plugin:0.27.0"
classpath "org.standardout:gradle-versioneye-plugin:1.3.0"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,14 @@ public boolean authorize(final String secret, final int verificationCode) throws
public boolean authorizeUser(final String userName, final int verificationCode) throws GoogleAuthenticatorException {
return this.googleAuthenticator.authorizeUser(userName, verificationCode);
}

@Override
public boolean authorize(final String secret, final int verificationCode, final long time) throws GoogleAuthenticatorException {
return this.googleAuthenticator.authorize(secret, verificationCode, time);
}

@Override
public boolean authorizeUser(final String userName, final int verificationCode, final long time) throws GoogleAuthenticatorException {
return this.googleAuthenticator.authorize(userName, verificationCode, time);
}
}
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ springCloudBusAmqpVersion=1.0.6.RELEASE
springIntegrationVersion=4.2.5.RELEASE

springBootVersion=1.3.5.RELEASE
springBootTomcatVersion=8.0.33
springBootTomcatVersion=8.5.0

hibernateVersion=5.1.0.Final
hibernateValidatorVersion=5.2.4.Final
Expand Down Expand Up @@ -77,11 +77,11 @@ dropwizardMetricsSpringVersion=3.1.3
jacksonDatabindVersion=2.6.6
hjsonVersion=1.1.4
personDirectoryVersion=1.8.1
quartzVersion=2.2.2
quartzVersion=2.2.3

yubicoVersion=3.0.1
duoVersion=1.1
googleAuthVersion=0.5.0
googleAuthVersion=0.6.0
googleZxingVersion=3.2.1
maxmindVersion=2.7.0

Expand All @@ -104,11 +104,11 @@ spymemcachedVersion=2.12.1
kryoVersion=3.0.3
kryoSerializersVersion=0.37

ehcacheVersion=2.10.1
jcacheVersion=1.0.0
ehcacheVersion=2.10.2
jcacheVersion=1.0.1

hsqlVersion=2.3.3
hikariVersion=2.4.5
hikariVersion=2.4.6

shiroVersion=1.2.4
jose4jVersion=0.5.0
Expand All @@ -126,7 +126,7 @@ grouperVersion=2.2.2

jsonassertVersion=1.3.0

couchbaseVersion=2.2.6
couchbaseVersion=2.2.7

igniteVersion=1.5.0.final
infinispanVersion=7.2.5.Final
Expand Down
0