|
6 | 6 |
|
7 | 7 | <groupId>com.vsct.vboard</groupId> |
8 | 8 | <artifactId>vboard-ws</artifactId> |
9 | | - <version>1.1.2</version> |
| 9 | + <version>1.2.0</version> |
10 | 10 |
|
11 | 11 | <name>V.Board WebService</name> |
12 | 12 | <packaging>war</packaging> |
|
24 | 24 | <buildDate>${maven.build.timestamp}</buildDate> |
25 | 25 |
|
26 | 26 | <java.version>1.8</java.version> |
27 | | - <springboot.version>1.5.9.RELEASE</springboot.version> |
28 | | - <commons-io.version>2.4</commons-io.version> |
| 27 | + <springboot.version>1.5.21.RELEASE</springboot.version> |
| 28 | + <commons-collections.version>3.2.2</commons-collections.version> |
| 29 | + <commons-io.version>2.6</commons-io.version> |
| 30 | + <commons-lang3.version>3.9</commons-lang3.version> |
29 | 31 | <mockito.version>1.10.19</mockito.version> |
30 | 32 | <restassured.version>2.4.1</restassured.version> |
31 | 33 | <jest.version>6.3.1</jest.version> |
32 | | - <keycloak.version>3.4.2.Final</keycloak.version> |
| 34 | + <keycloak.version>6.0.1</keycloak.version> |
| 35 | + <!-- Latest 8.0.0 version triggers this error during tests: |
| 36 | + NoSuchBeanDefinitionException: No qualifying bean of type 'org.keycloak.adapters.springboot.KeycloakSpringBootConfigResolver' available |
| 37 | + cf. https://issues.jboss.org/browse/KEYCLOAK-11218 & maybe https://github.com/keycloak/keycloak/commit/12d351ae |
| 38 | + --> |
33 | 39 | </properties> |
34 | 40 |
|
35 | 41 | <build> |
|
240 | 246 | <artifactId>commons-io</artifactId> |
241 | 247 | <version>${commons-io.version}</version> |
242 | 248 | </dependency> |
| 249 | + <dependency> |
| 250 | + <groupId>commons-collections</groupId> |
| 251 | + <artifactId>commons-collections</artifactId> |
| 252 | + <version>${commons-collections.version}</version> |
| 253 | + </dependency> |
| 254 | + <dependency> |
| 255 | + <groupId>org.apache.commons</groupId> |
| 256 | + <artifactId>commons-lang3</artifactId> |
| 257 | + <version>${commons-lang3.version}</version> |
| 258 | + </dependency> |
243 | 259 | <dependency> |
244 | 260 | <groupId>org.apache.httpcomponents</groupId> |
245 | 261 | <artifactId>httpclient</artifactId> |
|
298 | 314 | <dependency> |
299 | 315 | <groupId>org.seleniumhq.selenium</groupId> |
300 | 316 | <artifactId>selenium-java</artifactId> |
301 | | - <version>2.53.1</version> |
| 317 | + <version>3.13.0</version> |
302 | 318 | </dependency> |
303 | 319 | <dependency> |
304 | 320 | <groupId>xml-apis</groupId> |
|
0 commit comments