Skip to content

Commit adf2839

Browse files
committed
Seems to have issues on Java 11... hopefully this helps.
1 parent ab84131 commit adf2839

File tree

2 files changed

+16
-26
lines changed

2 files changed

+16
-26
lines changed

inoculator-1.0-SNAPSHOT.jar

-8.44 MB
Binary file not shown.

pom.xml

+16-26
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
/*
44
* $Id$
@@ -21,15 +21,15 @@
2121
* under the License.
2222
*/
2323
-->
24-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24+
<project xmlns="http://maven.apache.org/POM/4.0.0"
25+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2526
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2627
<modelVersion>4.0.0</modelVersion>
2728
<parent>
2829
<groupId>org.apache.struts</groupId>
2930
<artifactId>struts2-apps</artifactId>
3031
<version>2.5.8</version>
3132
</parent>
32-
3333
<artifactId>struts2-showcase</artifactId>
3434
<packaging>war</packaging>
3535
<name>Struts 2 Showcase Webapp</name>
@@ -45,8 +45,18 @@
4545
</properties>
4646
</profile>
4747
</profiles>
48-
<dependencies>
4948

49+
<dependencies>
50+
<dependency>
51+
<groupId>javax.activation</groupId>
52+
<artifactId>activation</artifactId>
53+
<version>1.1.1</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>javax.xml.bind</groupId>
57+
<artifactId>jaxb-api</artifactId>
58+
<version>2.3.0</version>
59+
</dependency>
5060
<dependency>
5161
<groupId>commons-fileupload</groupId>
5262
<artifactId>commons-fileupload</artifactId>
@@ -60,61 +70,49 @@
6070
<version>3.2.1</version>
6171
</dependency>
6272

63-
6473
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
6574
<dependency>
6675
<groupId>org.bouncycastle</groupId>
6776
<artifactId>bcprov-jdk15on</artifactId>
6877
<version>1.46</version>
6978
</dependency>
70-
71-
7279
<dependency>
7380
<groupId>org.apache.struts</groupId>
7481
<artifactId>struts2-config-browser-plugin</artifactId>
7582
</dependency>
76-
7783
<dependency>
7884
<groupId>org.apache.struts</groupId>
7985
<artifactId>struts2-sitemesh-plugin</artifactId>
8086
</dependency>
81-
8287
<dependency>
8388
<groupId>org.apache.struts</groupId>
8489
<artifactId>struts2-tiles-plugin</artifactId>
8590
</dependency>
86-
8791
<dependency>
8892
<groupId>org.apache.struts</groupId>
8993
<artifactId>struts2-dwr-plugin</artifactId>
9094
</dependency>
91-
9295
<dependency>
9396
<groupId>org.apache.struts</groupId>
9497
<artifactId>struts2-json-plugin</artifactId>
9598
</dependency>
96-
9799
<dependency>
98100
<groupId>org.apache.tiles</groupId>
99101
<artifactId>tiles-jsp</artifactId>
100102
<scope>runtime</scope>
101103
</dependency>
102-
103104
<dependency>
104105
<groupId>org.apache.struts</groupId>
105106
<artifactId>struts2-convention-plugin</artifactId>
106107
</dependency>
107-
108108
<dependency>
109109
<groupId>org.apache.struts</groupId>
110110
<artifactId>struts2-spring-plugin</artifactId>
111111
</dependency>
112-
113112
<dependency>
114113
<groupId>org.apache.struts</groupId>
115114
<artifactId>struts2-bean-validation-plugin</artifactId>
116115
</dependency>
117-
118116
<dependency>
119117
<groupId>javax.servlet</groupId>
120118
<artifactId>servlet-api</artifactId>
@@ -143,36 +141,30 @@
143141
<groupId>org.apache.velocity</groupId>
144142
<artifactId>velocity</artifactId>
145143
</dependency>
146-
147144
<dependency>
148145
<groupId>org.apache.velocity</groupId>
149146
<artifactId>velocity-tools</artifactId>
150147
</dependency>
151-
152148
<dependency>
153149
<groupId>opensymphony</groupId>
154150
<artifactId>sitemesh</artifactId>
155151
</dependency>
156-
157152
<dependency>
158153
<groupId>uk.ltd.getahead</groupId>
159154
<artifactId>dwr</artifactId>
160155
</dependency>
161-
162156
<dependency>
163157
<groupId>net.sourceforge.jwebunit</groupId>
164158
<artifactId>jwebunit-core</artifactId>
165159
<version>1.4.1</version>
166160
<scope>test</scope>
167161
</dependency>
168-
169162
<dependency>
170163
<groupId>commons-httpclient</groupId>
171164
<artifactId>commons-httpclient</artifactId>
172165
<version>3.1</version>
173166
<scope>test</scope>
174167
</dependency>
175-
176168
<dependency>
177169
<groupId>net.sourceforge.jwebunit</groupId>
178170
<artifactId>jwebunit-htmlunit-plugin</artifactId>
@@ -201,7 +193,6 @@
201193
<version>3.1.0</version>
202194
<scope>test</scope>
203195
</dependency>
204-
205196
<dependency>
206197
<groupId>org.hibernate</groupId>
207198
<artifactId>hibernate-core</artifactId>
@@ -246,7 +237,6 @@
246237
</webAppConfig>
247238
</configuration>
248239
</plugin>
249-
250240
<plugin>
251241
<artifactId>maven-surefire-plugin</artifactId>
252242
<configuration>
@@ -257,7 +247,6 @@
257247
</configuration>
258248
</plugin>
259249
</plugins>
260-
261250
<resources>
262251
<!-- Include resources under src/main/java in WEB-INF/classes -->
263252
<resource>
@@ -270,9 +259,10 @@
270259
</includes>
271260
</resource>
272261
</resources>
273-
274262
</build>
263+
275264
<properties>
276265
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
277266
</properties>
267+
278268
</project>

0 commit comments

Comments
 (0)