Skip to content

Commit 712ee85

Browse files
committed
updated spring dependecy to latest version.
1 parent d7276d0 commit 712ee85

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.0.2.RELEASE</version>
17+
<version>2.1.4.RELEASE</version>
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

@@ -35,17 +35,19 @@
3535
<groupId>com.h2database</groupId>
3636
<artifactId>h2</artifactId>
3737
<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>
3841
</dependency>
3942
<dependency>
4043
<groupId>org.springframework.boot</groupId>
4144
<artifactId>spring-boot-starter-test</artifactId>
4245
<scope>test</scope>
4346
</dependency>
44-
<!-- https://mvnrepository.com/artifact/org.flywaydb/flyway-maven-plugin -->
47+
4548
<dependency>
4649
<groupId>org.flywaydb</groupId>
47-
<artifactId>flyway-maven-plugin</artifactId>
48-
<version>5.1.4</version>
50+
<artifactId>flyway-core</artifactId>
4951
</dependency>
5052

5153
<dependency>
@@ -61,14 +63,12 @@
6163
<dependency>
6264
<groupId>org.mockito</groupId>
6365
<artifactId>mockito-core</artifactId>
64-
<version>2.21.0</version>
6566
</dependency>
6667
<dependency>
6768
<groupId>org.apache.commons</groupId>
6869
<artifactId>commons-lang3</artifactId>
69-
<version>3.8</version>
7070
</dependency>
71-
71+
7272
<!-- maven assembly plugin -->
7373
<dependency>
7474
<groupId>org.apache.maven.plugins</groupId>
@@ -84,10 +84,10 @@
8484
<groupId>org.springframework.boot</groupId>
8585
<artifactId>spring-boot-maven-plugin</artifactId>
8686
</plugin>
87-
87+
8888
<plugin>
8989
<artifactId>maven-assembly-plugin</artifactId>
90-
<executions>
90+
<executions>
9191
<execution>
9292
<id>create-keeptime-zip</id>
9393
<phase>package</phase>
@@ -118,7 +118,7 @@
118118
<plugin>
119119
<groupId>org.owasp</groupId>
120120
<artifactId>dependency-check-maven</artifactId>
121-
<version>4.0.1</version>
121+
<version>5.0.0-M2</version>
122122
<reportSets>
123123
<reportSet>
124124
<reports>

0 commit comments

Comments
 (0)