File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -277,6 +277,10 @@ Build is based on gradle. See `build.gradle` included in the repository.
277
277
Changelog
278
278
---------
279
279
280
+ ### v2.0.2
281
+
282
+ Changed dependency types to "compileOnly" so this library is not leaking specific JSP/JSTL libraries.
283
+
280
284
### v2.0.0
281
285
282
286
Updated for jakarta package names for J2EE classes.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
5
5
}
6
6
7
7
group = ' net.sargue'
8
- version = ' 2.0.0 '
8
+ version = ' 2.0.2 '
9
9
10
10
java {
11
11
toolchain {
@@ -30,10 +30,11 @@ repositories {
30
30
}
31
31
32
32
dependencies {
33
- api(group : " jakarta.servlet.jsp" , name : " jakarta.servlet.jsp-api" , version : " 3.0.0" )
34
- api(group : " jakarta.servlet.jsp.jstl" , name : " jakarta.servlet.jsp.jstl-api" , version : " 2.0.0" )
35
-
33
+ compileOnly(group : " jakarta.servlet.jsp" , name : " jakarta.servlet.jsp-api" , version : " 3.0.0" )
34
+ compileOnly(group : " jakarta.servlet.jsp.jstl" , name : " jakarta.servlet.jsp.jstl-api" , version : " 2.0.0" )
36
35
36
+ testImplementation(group : " jakarta.servlet.jsp" , name : " jakarta.servlet.jsp-api" , version : " 3.0.0" )
37
+ testImplementation(group : " jakarta.servlet.jsp.jstl" , name : " jakarta.servlet.jsp.jstl-api" , version : " 2.0.0" )
37
38
testImplementation(group : " junit" , name : " junit" , version : " 4.13.2" )
38
39
testImplementation(group : " org.springframework" , name : " spring-test" , version : " 6.0.0-M2" )
39
40
}
You can’t perform that action at this time.
0 commit comments