|
11 | 11 | <name>KeepTime</name> |
12 | 12 | <description>Time tracker</description> |
13 | 13 |
|
| 14 | + <licenses> |
| 15 | + <license> |
| 16 | + <name>GNU General Public License (GPL) version 3.0</name> |
| 17 | + <url>http://www.gnu.org/licenses/gpl.txt</url> |
| 18 | + <distribution>manual</distribution> |
| 19 | + </license> |
| 20 | + </licenses> |
| 21 | + |
| 22 | + <organization> |
| 23 | + <name>doubleSlash Net-Business GmbH</name> |
| 24 | + <url>https://www.doubleslash.de/</url> |
| 25 | + </organization> |
| 26 | + |
14 | 27 | <parent> |
15 | 28 | <groupId>org.springframework.boot</groupId> |
16 | 29 | <artifactId>spring-boot-starter-parent</artifactId> |
17 | | - <version>2.0.2.RELEASE</version> |
| 30 | + <version>2.1.5.RELEASE</version> |
18 | 31 | <relativePath /> <!-- lookup parent from repository --> |
19 | 32 | </parent> |
20 | 33 |
|
|
35 | 48 | <groupId>com.h2database</groupId> |
36 | 49 | <artifactId>h2</artifactId> |
37 | 50 | <scope>runtime</scope> |
| 51 | + <!-- overwriting managed version as newer version is not supported by flyway: H2 1.4.199 is newer than this version |
| 52 | + of Flyway and support has not been tested. --> |
| 53 | + <version>1.4.197</version> |
38 | 54 | </dependency> |
39 | 55 | <dependency> |
40 | 56 | <groupId>org.springframework.boot</groupId> |
41 | 57 | <artifactId>spring-boot-starter-test</artifactId> |
42 | 58 | <scope>test</scope> |
43 | 59 | </dependency> |
44 | | - <!-- https://mvnrepository.com/artifact/org.flywaydb/flyway-maven-plugin --> |
| 60 | + |
45 | 61 | <dependency> |
46 | 62 | <groupId>org.flywaydb</groupId> |
47 | | - <artifactId>flyway-maven-plugin</artifactId> |
48 | | - <version>5.1.4</version> |
| 63 | + <artifactId>flyway-core</artifactId> |
49 | 64 | </dependency> |
50 | 65 |
|
51 | 66 | <dependency> |
|
58 | 73 | <artifactId>dom</artifactId> |
59 | 74 | <version>2.3.0-jaxb-1.0.6</version> |
60 | 75 | </dependency> |
61 | | - <dependency> |
62 | | - <groupId>org.mockito</groupId> |
63 | | - <artifactId>mockito-core</artifactId> |
64 | | - <version>2.21.0</version> |
65 | | - </dependency> |
66 | 76 | <dependency> |
67 | 77 | <groupId>org.apache.commons</groupId> |
68 | 78 | <artifactId>commons-lang3</artifactId> |
69 | | - <version>3.8</version> |
70 | 79 | </dependency> |
71 | | - |
| 80 | + |
72 | 81 | <!-- maven assembly plugin --> |
73 | 82 | <dependency> |
74 | 83 | <groupId>org.apache.maven.plugins</groupId> |
|
84 | 93 | <groupId>org.springframework.boot</groupId> |
85 | 94 | <artifactId>spring-boot-maven-plugin</artifactId> |
86 | 95 | </plugin> |
87 | | - |
| 96 | + |
88 | 97 | <plugin> |
89 | 98 | <artifactId>maven-assembly-plugin</artifactId> |
90 | | - <executions> |
| 99 | + <executions> |
91 | 100 | <execution> |
92 | 101 | <id>create-keeptime-zip</id> |
93 | 102 | <phase>package</phase> |
|
118 | 127 | <plugin> |
119 | 128 | <groupId>org.owasp</groupId> |
120 | 129 | <artifactId>dependency-check-maven</artifactId> |
121 | | - <version>4.0.1</version> |
| 130 | + <version>5.0.0-M2</version> |
122 | 131 | <reportSets> |
123 | 132 | <reportSet> |
124 | 133 | <reports> |
|
129 | 138 | <configuration> |
130 | 139 | <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability> |
131 | 140 | <failBuildOnCVSS>8</failBuildOnCVSS> |
132 | | - <suppressionFile>dependency-check-report_suppressions.xml</suppressionFile> |
| 141 | + <!-- <suppressionFile>dependency-check-report_suppressions.xml</suppressionFile> --> |
133 | 142 | </configuration> |
134 | 143 | </plugin> |
135 | 144 | </plugins> |
|
0 commit comments