Skip to content

Commit 003b97b

Browse files
maven: Fix jstl version usage
This would fix regression from recent mvn version changes. Without this patch users get redirected to error.jsp as jstl-1.2 jar is not installed Signed-off-by: Rohit Yadav <[email protected]>
1 parent afcbd27 commit 003b97b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@
8686
<cs.axiom.version>1.2.8</cs.axiom.version>
8787
<cs.neethi.version>2.0.4</cs.neethi.version>
8888
<cs.servlet.version>2.5</cs.servlet.version>
89-
<cs.jstl.version>1.2.1</cs.jstl.version>
89+
<cs.jstl.version>1.2</cs.jstl.version>
90+
<cs.jstl-api.version>1.2.1</cs.jstl-api.version>
9091
<cs.selenium.server.version>1.0-20081010.060147</cs.selenium.server.version>
9192
<cs.vmware.api.version>6.0</cs.vmware.api.version>
9293
<org.springframework.version>3.2.16.RELEASE</org.springframework.version>

server/pom.xml

+6-1
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,15 @@
6969
<groupId>javax.mail</groupId>
7070
<artifactId>mail</artifactId>
7171
</dependency>
72+
<dependency>
73+
<groupId>jstl</groupId>
74+
<artifactId>jstl</artifactId>
75+
<version>${cs.jstl.version}</version>
76+
</dependency>
7277
<dependency>
7378
<groupId>javax.servlet.jsp.jstl</groupId>
7479
<artifactId>javax.servlet.jsp.jstl-api</artifactId>
75-
<version>${cs.jstl.version}</version>
80+
<version>${cs.jstl-api.version}</version>
7681
</dependency>
7782
<dependency>
7883
<groupId>commons-codec</groupId>

0 commit comments

Comments
 (0)