|
10 | 10 | <properties> |
11 | 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 | 12 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
13 | | - <selenium.version>3.141.59</selenium.version> |
14 | | - <wildfly.version>15.0.1.Final</wildfly.version> |
| 13 | + <selenium.version>2.45.0</selenium.version> |
| 14 | + <wildfly.version>20.0.1.Final</wildfly.version> |
15 | 15 | <project.scm.id>java-cookie-scm</project.scm.id> |
| 16 | + <java.version>1.8</java.version> |
16 | 17 | </properties> |
17 | 18 | <licenses> |
18 | 19 | <license> |
|
45 | 46 | <plugins> |
46 | 47 | <plugin> |
47 | 48 | <artifactId>maven-compiler-plugin</artifactId> |
48 | | - <version>3.1</version> |
| 49 | + <version>3.8.1</version> |
49 | 50 | <configuration> |
50 | | - <source>1.6</source> |
51 | | - <target>1.6</target> |
| 51 | + <source>${java.version}</source> |
| 52 | + <target>${java.version}</target> |
52 | 53 | </configuration> |
53 | 54 | </plugin> |
54 | 55 | <plugin> |
55 | 56 | <groupId>org.apache.maven.plugins</groupId> |
56 | 57 | <artifactId>maven-release-plugin</artifactId> |
57 | | - <version>2.5.2</version> |
| 58 | + <version>3.0.0-M1</version> |
58 | 59 | <configuration> |
59 | 60 | <useReleaseProfile>false</useReleaseProfile> |
60 | 61 | <releaseProfiles>release</releaseProfiles> |
|
69 | 70 | <dependency> |
70 | 71 | <groupId>org.jboss.arquillian</groupId> |
71 | 72 | <artifactId>arquillian-bom</artifactId> |
72 | | - <version>1.4.1.Final</version> |
73 | | - <scope>import</scope> |
| 73 | + <version>1.6.0.Final</version> |
| 74 | + <scope>test</scope> |
74 | 75 | <type>pom</type> |
75 | 76 | </dependency> |
76 | 77 | </dependencies> |
|
85 | 86 | <dependency> |
86 | 87 | <groupId>joda-time</groupId> |
87 | 88 | <artifactId>joda-time</artifactId> |
88 | | - <version>2.10.1</version> |
| 89 | + <version>2.10.6</version> |
89 | 90 | </dependency> |
90 | 91 | <dependency> |
91 | 92 | <groupId>com.fasterxml.jackson.core</groupId> |
92 | 93 | <artifactId>jackson-databind</artifactId> |
93 | | - <version>2.9.8</version> |
| 94 | + <version>2.11.2</version> |
94 | 95 | </dependency> |
95 | 96 | <dependency> |
96 | 97 | <groupId>junit</groupId> |
|
119 | 120 | <dependency> |
120 | 121 | <groupId>org.jboss.arquillian.protocol</groupId> |
121 | 122 | <artifactId>arquillian-protocol-servlet</artifactId> |
122 | | - <version>1.4.1.Final</version> |
| 123 | + <version>1.6.0.Final</version> |
123 | 124 | <scope>test</scope> |
124 | 125 | </dependency> |
125 | 126 | <dependency> |
126 | 127 | <groupId>org.jboss.arquillian.junit</groupId> |
127 | 128 | <artifactId>arquillian-junit-container</artifactId> |
128 | | - <version>1.4.1.Final</version> |
| 129 | + <version>1.6.0.Final</version> |
129 | 130 | <scope>test</scope> |
130 | 131 | </dependency> |
131 | 132 | <dependency> |
132 | 133 | <groupId>org.wildfly.arquillian</groupId> |
133 | 134 | <artifactId>wildfly-arquillian-container-managed</artifactId> |
134 | | - <version>2.1.1.Final</version> |
| 135 | + <version>2.2.0.Final</version> |
135 | 136 | <scope>test</scope> |
136 | 137 | </dependency> |
137 | 138 | <dependency> |
138 | 139 | <groupId>org.jboss.shrinkwrap.resolver</groupId> |
139 | 140 | <artifactId>shrinkwrap-resolver-impl-maven</artifactId> |
140 | | - <version>3.1.3</version> |
| 141 | + <version>3.1.4</version> |
141 | 142 | <scope>test</scope> |
142 | 143 | </dependency> |
143 | 144 | <dependency> |
144 | 145 | <groupId>org.jboss.shrinkwrap.resolver</groupId> |
145 | 146 | <artifactId>shrinkwrap-resolver-spi</artifactId> |
146 | | - <version>3.1.3</version> |
| 147 | + <version>3.1.4</version> |
147 | 148 | <scope>test</scope> |
148 | 149 | </dependency> |
149 | 150 | <dependency> |
150 | 151 | <groupId>org.apache.httpcomponents</groupId> |
151 | 152 | <artifactId>httpclient</artifactId> |
152 | | - <version>4.5.7</version> |
| 153 | + <version>4.5.12</version> |
153 | 154 | <scope>test</scope> |
154 | 155 | </dependency> |
155 | 156 | <dependency> |
156 | 157 | <groupId>org.apache.httpcomponents</groupId> |
157 | 158 | <artifactId>fluent-hc</artifactId> |
158 | | - <version>4.5.7</version> |
| 159 | + <version>4.5.12</version> |
159 | 160 | <scope>test</scope> |
160 | 161 | </dependency> |
161 | 162 | </dependencies> |
|
192 | 193 | </executions> |
193 | 194 | </plugin> |
194 | 195 | <plugin> |
195 | | - <groupId>org.codehaus.mojo</groupId> |
196 | | - <artifactId>failsafe-maven-plugin</artifactId> |
197 | | - <version>2.4.3-alpha-1</version> |
| 196 | + <groupId>org.apache.maven.plugins</groupId> |
| 197 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 198 | + <version>2.22.2</version> |
198 | 199 | <executions> |
199 | 200 | <execution> |
200 | 201 | <goals> |
|
207 | 208 | <plugin> |
208 | 209 | <groupId>com.github.eirslett</groupId> |
209 | 210 | <artifactId>frontend-maven-plugin</artifactId> |
210 | | - <version>1.5</version> |
| 211 | + <version>1.10.0</version> |
211 | 212 | <executions> |
212 | 213 | <execution> |
213 | 214 | <id>install node and npm</id> |
|
262 | 263 | <plugin> |
263 | 264 | <groupId>org.apache.maven.plugins</groupId> |
264 | 265 | <artifactId>maven-javadoc-plugin</artifactId> |
265 | | - <version>3.0.1</version> |
| 266 | + <version>3.2.0</version> |
266 | 267 | <executions> |
267 | 268 | <execution> |
268 | 269 | <id>attach-javadocs</id> |
|
275 | 276 | <plugin> |
276 | 277 | <groupId>org.apache.maven.plugins</groupId> |
277 | 278 | <artifactId>maven-source-plugin</artifactId> |
278 | | - <version>3.0.1</version> |
| 279 | + <version>3.2.1</version> |
279 | 280 | <executions> |
280 | 281 | <execution> |
281 | 282 | <id>attach-sources</id> |
|
0 commit comments