Skip to content

Commit f6d9fbe

Browse files
author
Marco Vermeulen
committed
GRAILS-6622 - Updated concurrent linked hashmap dependency to be jdk 1.5 compliant.
1 parent 13d08b6 commit f6d9fbe

6 files changed

+6
-6
lines changed

dependencies.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ The following libraries are included in Grails because they are required either
1717
- CGLIB 2.1_3 with ObjectWeb ASM 1.5.3 (http://cglib.sourceforge.net) Apache 1.1 License
1818
- required for running Grails applications (Spring AOP & Hibernate)
1919

20-
* concurrentlinkedhashmap-lru-1.0.jar
21-
- ConcurrentLinkedHashMap policy: least-recently-used, jdk: 6 (https://code.google.com/p/concurrentlinkedhashmap) Apache License 2.0
20+
* concurrentlinkedhashmap-lru-1.0_jdk5.jar
21+
- ConcurrentLinkedHashMap policy: least-recently-used, jdk: 5 (https://code.google.com/p/concurrentlinkedhashmap) Apache License 2.0
2222
- required for building Grails core
2323
- required for running Grails applications
2424

ivy.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
<dependency org="jaxen" name="jaxen" rev="1.1-beta-11"/>
3636
<dependency org="bsf" name="bsf" rev="2.3.0"/>
3737
<dependency org="hibernate" name="hibernate" rev="3.2"/>
38-
<dependency org="com.googlecode.concurrentlinkedhashmap" name="concurrentlinkedhashmap-lru" rev="1.0"/>
38+
<dependency org="com.googlecode.concurrentlinkedhashmap" name="concurrentlinkedhashmap-lru" rev="1.0_jdk5"/>
3939
</dependencies>
4040
</ivy-module>
-34.8 KB
Binary file not shown.
36.4 KB
Binary file not shown.

maven/grails-web.pom.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
114114
<artifactId>concurrentlinkedhashmap-lru</artifactId>
115-
<version>1.0</version>
115+
<version>1.0_jdk5</version>
116116
</dependency>
117117

118118

src/java/org/codehaus/groovy/grails/resolve/IvyDependencyManager.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class IvyDependencyManager extends AbstractIvyDependencyManager implements Depen
238238
"org.slf4j:slf4j-api:1.5.8",
239239
"org.slf4j:slf4j-log4j12:1.5.8",
240240
"org.springframework:org.springframework.test:3.0.3.RELEASE",
241-
"com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.0"
241+
"com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.0_jdk5"
242242

243243
docs "org.xhtmlrenderer:core-renderer:R8",
244244
"com.lowagie:itext:2.0.8",
@@ -258,7 +258,7 @@ class IvyDependencyManager extends AbstractIvyDependencyManager implements Depen
258258
}
259259

260260
"${compileTimeDependenciesMethod}"("aopalliance:aopalliance:1.0",
261-
"com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.0",
261+
"com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.0_jdk5",
262262
"commons-codec:commons-codec:1.3",
263263
"commons-collections:commons-collections:3.2.1",
264264
"commons-io:commons-io:1.4",

0 commit comments

Comments
 (0)