|
14 | 14 | <parent> |
15 | 15 | <groupId>org.springframework.boot</groupId> |
16 | 16 | <artifactId>spring-boot-starter-parent</artifactId> |
17 | | - <version>2.0.2.RELEASE</version> |
| 17 | + <version>2.1.4.RELEASE</version> |
18 | 18 | <relativePath /> <!-- lookup parent from repository --> |
19 | 19 | </parent> |
20 | 20 |
|
|
35 | 35 | <groupId>com.h2database</groupId> |
36 | 36 | <artifactId>h2</artifactId> |
37 | 37 | <scope>runtime</scope> |
| 38 | + <!-- overwriting managed version as newer version is not supported by flyway: H2 1.4.199 is newer than this version |
| 39 | + of Flyway and support has not been tested. --> |
| 40 | + <version>1.4.197</version> |
38 | 41 | </dependency> |
39 | 42 | <dependency> |
40 | 43 | <groupId>org.springframework.boot</groupId> |
41 | 44 | <artifactId>spring-boot-starter-test</artifactId> |
42 | 45 | <scope>test</scope> |
43 | 46 | </dependency> |
44 | | - <!-- https://mvnrepository.com/artifact/org.flywaydb/flyway-maven-plugin --> |
| 47 | + |
45 | 48 | <dependency> |
46 | 49 | <groupId>org.flywaydb</groupId> |
47 | | - <artifactId>flyway-maven-plugin</artifactId> |
48 | | - <version>5.1.4</version> |
| 50 | + <artifactId>flyway-core</artifactId> |
49 | 51 | </dependency> |
50 | 52 |
|
51 | 53 | <dependency> |
|
61 | 63 | <dependency> |
62 | 64 | <groupId>org.mockito</groupId> |
63 | 65 | <artifactId>mockito-core</artifactId> |
64 | | - <version>2.21.0</version> |
65 | 66 | </dependency> |
66 | 67 | <dependency> |
67 | 68 | <groupId>org.apache.commons</groupId> |
68 | 69 | <artifactId>commons-lang3</artifactId> |
69 | | - <version>3.8</version> |
70 | 70 | </dependency> |
71 | | - |
| 71 | + |
72 | 72 | <!-- maven assembly plugin --> |
73 | 73 | <dependency> |
74 | 74 | <groupId>org.apache.maven.plugins</groupId> |
|
84 | 84 | <groupId>org.springframework.boot</groupId> |
85 | 85 | <artifactId>spring-boot-maven-plugin</artifactId> |
86 | 86 | </plugin> |
87 | | - |
| 87 | + |
88 | 88 | <plugin> |
89 | 89 | <artifactId>maven-assembly-plugin</artifactId> |
90 | | - <executions> |
| 90 | + <executions> |
91 | 91 | <execution> |
92 | 92 | <id>create-keeptime-zip</id> |
93 | 93 | <phase>package</phase> |
|
118 | 118 | <plugin> |
119 | 119 | <groupId>org.owasp</groupId> |
120 | 120 | <artifactId>dependency-check-maven</artifactId> |
121 | | - <version>4.0.1</version> |
| 121 | + <version>5.0.0-M2</version> |
122 | 122 | <reportSets> |
123 | 123 | <reportSet> |
124 | 124 | <reports> |
|
0 commit comments