|
30 | 30 |
|
31 | 31 | <groupId>org.apache.velocity.tools</groupId> |
32 | 32 | <artifactId>velocity-tools-parent</artifactId> |
33 | | - <version>3.1</version> |
| 33 | + <version>3.1-alfa1001</version> |
34 | 34 | <packaging>pom</packaging> |
35 | 35 |
|
36 | 36 | <name>VelocityTools</name> |
|
60 | 60 | <connection>scm:git:https://gitbox.apache.org/repos/asf/velocity-tools.git</connection> |
61 | 61 | <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/velocity-tools.git</developerConnection> |
62 | 62 | <url>https://gitbox.apache.org/repos/asf?p=velocity-tools.git</url> |
63 | | - <tag>3.1-RC1</tag> |
| 63 | + <tag>3.1-alfa1001</tag> |
64 | 64 | </scm> |
65 | 65 | <issueManagement> |
66 | 66 | <system>jira</system> |
|
129 | 129 | <dependency> |
130 | 130 | <groupId>org.apache.velocity</groupId> |
131 | 131 | <artifactId>velocity-engine-core</artifactId> |
132 | | - <version>2.3</version> |
| 132 | + <version>2.4.1</version> |
133 | 133 | </dependency> |
134 | 134 | <dependency> |
135 | 135 | <groupId>org.apache.commons</groupId> |
136 | 136 | <artifactId>commons-lang3</artifactId> |
137 | | - <version>3.10</version> |
| 137 | + <version>3.18.0</version> |
138 | 138 | </dependency> |
139 | 139 | <dependency> |
140 | 140 | <groupId>org.apache.commons</groupId> |
|
159 | 159 | <version>${slf4j.version}</version> |
160 | 160 | </dependency> |
161 | 161 | <dependency> |
162 | | - <groupId>javax.servlet</groupId> |
163 | | - <artifactId>javax.servlet-api</artifactId> |
164 | | - <version>3.1.0</version> |
| 162 | + <groupId>jakarta.servlet</groupId> |
| 163 | + <artifactId>jakarta.servlet-api</artifactId> |
| 164 | + <version>5.0.0</version> |
165 | 165 | </dependency> |
166 | 166 | <dependency> |
167 | | - <groupId>javax.servlet.jsp</groupId> |
168 | | - <artifactId>javax.servlet.jsp-api</artifactId> |
169 | | - <version>2.3.3</version> |
| 167 | + <groupId>jakarta.servlet.jsp</groupId> |
| 168 | + <artifactId>jakarta.servlet.jsp-api</artifactId> |
| 169 | + <version>3.0.0</version> |
170 | 170 | </dependency> |
171 | 171 | <dependency> |
172 | | - <groupId>javax.el</groupId> |
173 | | - <artifactId>javax.el-api</artifactId> |
174 | | - <version>3.0.0</version> |
| 172 | + <groupId>jakarta.el</groupId> |
| 173 | + <artifactId>jakarta.el-api</artifactId> |
| 174 | + <version>4.0.0</version> |
175 | 175 | </dependency> |
176 | 176 | <dependency> |
177 | 177 | <groupId>junit</groupId> |
|
181 | 181 | <dependency> |
182 | 182 | <groupId>org.easymock</groupId> |
183 | 183 | <artifactId>easymock</artifactId> |
184 | | - <version>4.2</version> |
| 184 | + <version>5.2.0</version> |
185 | 185 | </dependency> |
186 | 186 | </dependencies> |
187 | 187 | </dependencyManagement> |
|
243 | 243 | </execution> |
244 | 244 | </executions> |
245 | 245 | </plugin> |
| 246 | + <plugin> |
| 247 | + <groupId>org.apache.maven.plugins</groupId> |
| 248 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 249 | + <version>3.5.0</version> |
| 250 | + <executions> |
| 251 | + <execution> |
| 252 | + <id>enforce-bytecode-version</id> |
| 253 | + <goals> |
| 254 | + <goal>enforce</goal> |
| 255 | + </goals> |
| 256 | + <configuration> |
| 257 | + <rules> |
| 258 | + <enforceBytecodeVersion> |
| 259 | + <maxJdkVersion>11</maxJdkVersion> |
| 260 | + </enforceBytecodeVersion> |
| 261 | + </rules> |
| 262 | + </configuration> |
| 263 | + </execution> |
| 264 | + </executions> |
| 265 | + </plugin> |
| 266 | + |
246 | 267 | </plugins> |
247 | 268 | </build> |
248 | 269 | </project> |
0 commit comments