Skip to content

Commit e82117e

Browse files
committed
SAK-29498 Upgrade asm from 1.5.3 to 4.1
1 parent 4545602 commit e82117e

File tree

2 files changed

+23
-12
lines changed

2 files changed

+23
-12
lines changed

deploy/shared/pom.xml

+12-12
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,6 @@
6767
of hibernate-3.2.7.ga) despite the fact that the kernel does not explicitly
6868
define these jars as dependencies. -->
6969

70-
<dependency>
71-
<groupId>asm</groupId>
72-
<artifactId>asm</artifactId>
73-
<version>1.5.3</version>
74-
<scope>compile</scope>
75-
</dependency>
76-
<dependency>
77-
<groupId>asm</groupId>
78-
<artifactId>asm-attrs</artifactId>
79-
<version>1.5.3</version>
80-
<scope>compile</scope>
81-
</dependency>
8270
<dependency>
8371
<groupId>cglib</groupId>
8472
<artifactId>cglib-nodep</artifactId>
@@ -197,6 +185,18 @@
197185
<version>${sakai.elasticsearch.version}</version>
198186
<scope>compile</scope>
199187
</dependency>
188+
<dependency>
189+
<groupId>org.ow2.asm</groupId>
190+
<artifactId>asm</artifactId>
191+
<version>${sakai.asm.version}</version>
192+
<scope>compile</scope>
193+
</dependency>
194+
<dependency>
195+
<groupId>org.ow2.asm</groupId>
196+
<artifactId>asm-commons</artifactId>
197+
<version>${sakai.asm.version}</version>
198+
<scope>compile</scope>
199+
</dependency>
200200
<!-- jackson libs need to be in shared with spring -->
201201
<dependency>
202202
<groupId>com.fasterxml.jackson.core</groupId>

master/pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
<sakai.quartz.version>1.8.6</sakai.quartz.version>
103103
<sakai.servletapi.version>2.4</sakai.servletapi.version>
104104
<sakai.sigar.version>1.6.4</sakai.sigar.version>
105+
<sakai.asm.version>4.1</sakai.asm.version>
105106
<sakai.spring.groupId>org.springframework</sakai.spring.groupId>
106107
<sakai.spring.artifactId>spring-core</sakai.spring.artifactId>
107108
<sakai.spring.version>3.2.13.RELEASE</sakai.spring.version>
@@ -885,6 +886,16 @@
885886
<artifactId>jts</artifactId>
886887
<version>${sakai.jts.version}</version>
887888
</dependency>
889+
<dependency>
890+
<groupId>org.ow2.asm</groupId>
891+
<artifactId>asm</artifactId>
892+
<version>${sakai.asm.version}</version>
893+
</dependency>
894+
<dependency>
895+
<groupId>org.ow2.asm</groupId>
896+
<artifactId>asm-commons</artifactId>
897+
<version>${sakai.asm.version}</version>
898+
</dependency>
888899
<!-- Sakai apis -->
889900
<dependency>
890901
<groupId>org.sakaiproject.accountvalidator</groupId>

0 commit comments

Comments
 (0)