Skip to content

Commit 11116c2

Browse files
author
Rob Winch
committed
SEC-2787: Update Versions
1 parent f5e8222 commit 11116c2

File tree

73 files changed

+893
-657
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+893
-657
lines changed

acl/pom.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@
5252
<dependency>
5353
<groupId>org.springframework</groupId>
5454
<artifactId>spring-aop</artifactId>
55-
<version>4.1.1.BUILD-SNAPSHOT</version>
55+
<version>4.1.3.RELEASE</version>
5656
<scope>compile</scope>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.springframework</groupId>
6060
<artifactId>spring-context</artifactId>
61-
<version>4.1.1.BUILD-SNAPSHOT</version>
61+
<version>4.1.3.RELEASE</version>
6262
<scope>compile</scope>
6363
</dependency>
6464
<dependency>
6565
<groupId>org.springframework</groupId>
6666
<artifactId>spring-core</artifactId>
67-
<version>4.1.1.BUILD-SNAPSHOT</version>
67+
<version>4.1.3.RELEASE</version>
6868
<scope>compile</scope>
6969
<exclusions>
7070
<exclusion>
@@ -76,33 +76,33 @@
7676
<dependency>
7777
<groupId>org.springframework</groupId>
7878
<artifactId>spring-jdbc</artifactId>
79-
<version>4.1.1.BUILD-SNAPSHOT</version>
79+
<version>4.1.3.RELEASE</version>
8080
<scope>compile</scope>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.springframework</groupId>
8484
<artifactId>spring-tx</artifactId>
85-
<version>4.1.1.BUILD-SNAPSHOT</version>
85+
<version>4.1.3.RELEASE</version>
8686
<scope>compile</scope>
8787
</dependency>
8888
<dependency>
8989
<groupId>commons-logging</groupId>
9090
<artifactId>commons-logging</artifactId>
91-
<version>1.1.1</version>
91+
<version>1.2</version>
9292
<scope>compile</scope>
9393
<optional>true</optional>
9494
</dependency>
9595
<dependency>
9696
<groupId>net.sf.ehcache</groupId>
9797
<artifactId>ehcache</artifactId>
98-
<version>2.6.5</version>
98+
<version>2.9.0</version>
9999
<scope>compile</scope>
100100
<optional>true</optional>
101101
</dependency>
102102
<dependency>
103103
<groupId>ch.qos.logback</groupId>
104104
<artifactId>logback-classic</artifactId>
105-
<version>0.9.29</version>
105+
<version>1.1.2</version>
106106
<scope>test</scope>
107107
</dependency>
108108
<dependency>
@@ -120,7 +120,7 @@
120120
<dependency>
121121
<groupId>org.hsqldb</groupId>
122122
<artifactId>hsqldb</artifactId>
123-
<version>2.3.1</version>
123+
<version>2.3.2</version>
124124
<scope>test</scope>
125125
</dependency>
126126
<dependency>
@@ -132,25 +132,25 @@
132132
<dependency>
133133
<groupId>org.slf4j</groupId>
134134
<artifactId>jcl-over-slf4j</artifactId>
135-
<version>1.7.5</version>
135+
<version>1.7.7</version>
136136
<scope>test</scope>
137137
</dependency>
138138
<dependency>
139139
<groupId>org.springframework</groupId>
140140
<artifactId>spring-beans</artifactId>
141-
<version>4.1.1.BUILD-SNAPSHOT</version>
141+
<version>4.1.3.RELEASE</version>
142142
<scope>test</scope>
143143
</dependency>
144144
<dependency>
145145
<groupId>org.springframework</groupId>
146146
<artifactId>spring-context-support</artifactId>
147-
<version>4.1.1.BUILD-SNAPSHOT</version>
147+
<version>4.1.3.RELEASE</version>
148148
<scope>test</scope>
149149
</dependency>
150150
<dependency>
151151
<groupId>org.springframework</groupId>
152152
<artifactId>spring-test</artifactId>
153-
<version>4.1.1.BUILD-SNAPSHOT</version>
153+
<version>4.1.3.RELEASE</version>
154154
<scope>test</scope>
155155
</dependency>
156156
</dependencies>

aspects/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@
4646
<dependency>
4747
<groupId>org.springframework</groupId>
4848
<artifactId>spring-beans</artifactId>
49-
<version>4.1.1.BUILD-SNAPSHOT</version>
49+
<version>4.1.3.RELEASE</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.springframework</groupId>
5454
<artifactId>spring-context</artifactId>
55-
<version>4.1.1.BUILD-SNAPSHOT</version>
55+
<version>4.1.3.RELEASE</version>
5656
<scope>compile</scope>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.springframework</groupId>
6060
<artifactId>spring-core</artifactId>
61-
<version>4.1.1.BUILD-SNAPSHOT</version>
61+
<version>4.1.3.RELEASE</version>
6262
<scope>compile</scope>
6363
<exclusions>
6464
<exclusion>
@@ -70,14 +70,14 @@
7070
<dependency>
7171
<groupId>commons-logging</groupId>
7272
<artifactId>commons-logging</artifactId>
73-
<version>1.1.1</version>
73+
<version>1.2</version>
7474
<scope>compile</scope>
7575
<optional>true</optional>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.aspectj</groupId>
7979
<artifactId>aspectjrt</artifactId>
80-
<version>1.6.10</version>
80+
<version>1.8.4</version>
8181
<scope>compile</scope>
8282
<optional>true</optional>
8383
</dependency>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>ch.qos.logback</groupId>
9292
<artifactId>logback-classic</artifactId>
93-
<version>0.9.29</version>
93+
<version>1.1.2</version>
9494
<scope>test</scope>
9595
</dependency>
9696
<dependency>
@@ -114,19 +114,19 @@
114114
<dependency>
115115
<groupId>org.slf4j</groupId>
116116
<artifactId>jcl-over-slf4j</artifactId>
117-
<version>1.7.5</version>
117+
<version>1.7.7</version>
118118
<scope>test</scope>
119119
</dependency>
120120
<dependency>
121121
<groupId>org.springframework</groupId>
122122
<artifactId>spring-aop</artifactId>
123-
<version>4.1.1.BUILD-SNAPSHOT</version>
123+
<version>4.1.3.RELEASE</version>
124124
<scope>test</scope>
125125
</dependency>
126126
<dependency>
127127
<groupId>org.springframework</groupId>
128128
<artifactId>spring-test</artifactId>
129-
<version>4.1.1.BUILD-SNAPSHOT</version>
129+
<version>4.1.3.RELEASE</version>
130130
<scope>test</scope>
131131
</dependency>
132132
</dependencies>

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7")
99
classpath("org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE")
10-
classpath("org.gradle.api.plugins:gradle-tomcat-plugin:1.2.3")
10+
classpath("org.gradle.api.plugins:gradle-tomcat-plugin:1.2.5")
1111
classpath('me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1')
1212
classpath('org.asciidoctor:asciidoctor-gradle-plugin:1.5.1')
1313
classpath("io.spring.gradle:docbook-reference-plugin:0.3.0")
@@ -25,8 +25,8 @@ allprojects {
2525

2626
ext.releaseBuild = version.endsWith('RELEASE')
2727
ext.snapshotBuild = version.endsWith('SNAPSHOT')
28-
ext.springVersion = '4.1.1.BUILD-SNAPSHOT'
29-
ext.springLdapVersion = '2.0.1.RELEASE'
28+
ext.springVersion = '4.1.3.RELEASE'
29+
ext.springLdapVersion = '2.0.2.RELEASE'
3030

3131
group = 'org.springframework.security'
3232

cas/cas.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
"org.springframework:spring-context:$springVersion",
77
"org.springframework:spring-beans:$springVersion",
88
"org.springframework:spring-web:$springVersion",
9-
"org.jasig.cas.client:cas-client-core:3.3.3"
9+
"org.jasig.cas.client:cas-client-core:$casClientVersion"
1010

1111
optional "net.sf.ehcache:ehcache:$ehcacheVersion"
1212

cas/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@
5858
<dependency>
5959
<groupId>org.springframework</groupId>
6060
<artifactId>spring-beans</artifactId>
61-
<version>4.1.1.BUILD-SNAPSHOT</version>
61+
<version>4.1.3.RELEASE</version>
6262
<scope>compile</scope>
6363
</dependency>
6464
<dependency>
6565
<groupId>org.springframework</groupId>
6666
<artifactId>spring-context</artifactId>
67-
<version>4.1.1.BUILD-SNAPSHOT</version>
67+
<version>4.1.3.RELEASE</version>
6868
<scope>compile</scope>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.springframework</groupId>
7272
<artifactId>spring-core</artifactId>
73-
<version>4.1.1.BUILD-SNAPSHOT</version>
73+
<version>4.1.3.RELEASE</version>
7474
<scope>compile</scope>
7575
<exclusions>
7676
<exclusion>
@@ -82,20 +82,20 @@
8282
<dependency>
8383
<groupId>org.springframework</groupId>
8484
<artifactId>spring-web</artifactId>
85-
<version>4.1.1.BUILD-SNAPSHOT</version>
85+
<version>4.1.3.RELEASE</version>
8686
<scope>compile</scope>
8787
</dependency>
8888
<dependency>
8989
<groupId>commons-logging</groupId>
9090
<artifactId>commons-logging</artifactId>
91-
<version>1.1.1</version>
91+
<version>1.2</version>
9292
<scope>compile</scope>
9393
<optional>true</optional>
9494
</dependency>
9595
<dependency>
9696
<groupId>net.sf.ehcache</groupId>
9797
<artifactId>ehcache</artifactId>
98-
<version>2.6.5</version>
98+
<version>2.9.0</version>
9999
<scope>compile</scope>
100100
<optional>true</optional>
101101
</dependency>
@@ -108,7 +108,7 @@
108108
<dependency>
109109
<groupId>ch.qos.logback</groupId>
110110
<artifactId>logback-classic</artifactId>
111-
<version>0.9.29</version>
111+
<version>1.1.2</version>
112112
<scope>test</scope>
113113
</dependency>
114114
<dependency>
@@ -132,13 +132,13 @@
132132
<dependency>
133133
<groupId>org.slf4j</groupId>
134134
<artifactId>jcl-over-slf4j</artifactId>
135-
<version>1.7.5</version>
135+
<version>1.7.7</version>
136136
<scope>test</scope>
137137
</dependency>
138138
<dependency>
139139
<groupId>org.springframework</groupId>
140140
<artifactId>spring-test</artifactId>
141-
<version>4.1.1.BUILD-SNAPSHOT</version>
141+
<version>4.1.3.RELEASE</version>
142142
<scope>test</scope>
143143
</dependency>
144144
</dependencies>

config/config.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151
'ldapsdk:ldapsdk:4.1',
5252
powerMockDependencies,
5353
"org.hibernate:hibernate-entitymanager:3.6.10.Final",
54-
"org.hsqldb:hsqldb:2.2.8",
54+
"org.hsqldb:hsqldb:$hsqlVersion",
5555
spockDependencies
5656

5757
testCompile('org.openid4java:openid4java-nodeps:0.9.6') {
@@ -62,7 +62,7 @@ dependencies {
6262
}
6363

6464
testRuntime "org.hsqldb:hsqldb:$hsqlVersion",
65-
"cglib:cglib-nodep:2.2"
65+
"cglib:cglib-nodep:$cglibVersion"
6666
}
6767

6868
test {

0 commit comments

Comments
 (0)