|
5 | 5 |
|
6 | 6 | <groupId>de.doubleslash</groupId> |
7 | 7 | <artifactId>keeptime</artifactId> |
8 | | - <version>1.1.0-SNAPSHOT</version> |
| 8 | + <version>1.2.0-SNAPSHOT</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | 11 | <name>KeepTime</name> |
|
27 | 27 | <parent> |
28 | 28 | <groupId>org.springframework.boot</groupId> |
29 | 29 | <artifactId>spring-boot-starter-parent</artifactId> |
30 | | - <version>2.1.5.RELEASE</version> |
| 30 | + <version>2.3.7.RELEASE</version> |
31 | 31 | <relativePath /> <!-- lookup parent from repository --> |
32 | 32 | </parent> |
33 | 33 |
|
| 34 | + <repositories> |
| 35 | + |
| 36 | + <!-- Including for fontawesome--> |
| 37 | + <repository> |
| 38 | + <id>fontawesomefx-repo</id> |
| 39 | + <name>FontAwesome Repository</name> |
| 40 | + <url>https://dl.bintray.com/jerady/maven</url> |
| 41 | + </repository> |
| 42 | + |
| 43 | + <!-- needed to resolve against central first--> |
| 44 | + <repository> |
| 45 | + <id>central</id> |
| 46 | + <name>Maven Central</name> |
| 47 | + <layout>default</layout> |
| 48 | + <url>https://repo1.maven.org/maven2</url> |
| 49 | + </repository> |
| 50 | + </repositories> |
| 51 | + |
34 | 52 | <properties> |
35 | 53 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
36 | 54 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
37 | 55 | <maven.compiler.source>1.8</maven.compiler.source> |
38 | 56 | <maven.compiler.target>1.8</maven.compiler.target> |
| 57 | + |
| 58 | + <h2.version>1.4.197</h2.version> |
| 59 | + |
| 60 | + <maven-dependency-check.version>6.0.5</maven-dependency-check.version> |
| 61 | + <!-- USING HTML,XML (comma-separated list) did not work with plugin version 5.1.0 --> |
| 62 | + <maven-dependency-check.format>ALL</maven-dependency-check.format> |
| 63 | + <maven-dependency-check.failOnError>true</maven-dependency-check.failOnError> |
| 64 | + <!-- 11 is the default --> |
| 65 | + <maven-dependency-check.failBuildOnCVSS>8.9</maven-dependency-check.failBuildOnCVSS> |
39 | 66 | </properties> |
40 | 67 |
|
41 | 68 | <dependencies> |
|
47 | 74 | <dependency> |
48 | 75 | <groupId>com.h2database</groupId> |
49 | 76 | <artifactId>h2</artifactId> |
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> |
| 77 | + <version>${h2.version}</version> |
54 | 78 | </dependency> |
55 | 79 | <dependency> |
56 | 80 | <groupId>org.springframework.boot</groupId> |
|
63 | 87 | <artifactId>flyway-core</artifactId> |
64 | 88 | </dependency> |
65 | 89 |
|
| 90 | + <!-- https://mvnrepository.com/artifact/com.1stleg/jnativehook --> |
66 | 91 | <dependency> |
67 | 92 | <groupId>com.1stleg</groupId> |
68 | 93 | <artifactId>jnativehook</artifactId> |
|
82 | 107 | <dependency> |
83 | 108 | <groupId>org.apache.maven.plugins</groupId> |
84 | 109 | <artifactId>maven-assembly-plugin</artifactId> |
85 | | - <version>3.1.1</version> |
| 110 | + <version>3.3.0</version> |
86 | 111 | <type>maven-plugin</type> |
87 | 112 | </dependency> |
| 113 | + |
| 114 | + <dependency> |
| 115 | + <groupId>de.jensd</groupId> |
| 116 | + <artifactId>fontawesomefx-commons</artifactId> |
| 117 | + <version>8.15</version> |
| 118 | + </dependency> |
| 119 | + |
| 120 | + <dependency> |
| 121 | + <groupId>de.jensd</groupId> |
| 122 | + <artifactId>fontawesomefx-fontawesome</artifactId> |
| 123 | + <version>4.7.0-5</version> |
| 124 | + </dependency> |
88 | 125 | </dependencies> |
89 | 126 |
|
90 | 127 | <build> |
|
94 | 131 | <artifactId>spring-boot-maven-plugin</artifactId> |
95 | 132 | </plugin> |
96 | 133 |
|
| 134 | + <plugin> |
| 135 | + <groupId>pl.project13.maven</groupId> |
| 136 | + <artifactId>git-commit-id-plugin</artifactId> |
| 137 | + <configuration> |
| 138 | + <generateGitPropertiesFile>false</generateGitPropertiesFile> |
| 139 | + </configuration> |
| 140 | + </plugin> |
| 141 | + |
97 | 142 | <plugin> |
98 | 143 | <artifactId>maven-assembly-plugin</artifactId> |
99 | 144 | <executions> |
|
112 | 157 | </execution> |
113 | 158 | </executions> |
114 | 159 | </plugin> |
| 160 | + |
| 161 | + <!-- see https://jeremylong.github.io/DependencyCheck/dependency-check-maven/ --> |
| 162 | + <!-- https://mvnrepository.com/artifact/org.owasp/dependency-check-maven --> |
| 163 | + <plugin> |
| 164 | + <groupId>org.owasp</groupId> |
| 165 | + <artifactId>dependency-check-maven</artifactId> |
| 166 | + <version>${maven-dependency-check.version}</version> |
| 167 | + <configuration> |
| 168 | + <format>${maven-dependency-check.format}</format> |
| 169 | + <failOnError>${maven-dependency-check.failOnError}</failOnError> |
| 170 | + <failBuildOnCVSS>${maven-dependency-check.failBuildOnCVSS}</failBuildOnCVSS> |
| 171 | + <outputDirectory>target/site</outputDirectory> |
| 172 | + <!--suppressionFile>${project.basedir}/dependency-check-report_suppressions.xml</suppressionFile --> |
| 173 | + </configuration> |
| 174 | + <executions> |
| 175 | + <execution> |
| 176 | + <goals> |
| 177 | + <goal>update-only</goal> |
| 178 | + </goals> |
| 179 | + </execution> |
| 180 | + </executions> |
| 181 | + </plugin> |
| 182 | + |
115 | 183 | </plugins> |
116 | 184 | </build> |
117 | 185 |
|
|
121 | 189 | <plugin> |
122 | 190 | <groupId>org.apache.maven.plugins</groupId> |
123 | 191 | <artifactId>maven-site-plugin</artifactId> |
124 | | - <version>3.7.1</version> |
| 192 | + <version>3.9.1</version> |
125 | 193 | </plugin> |
126 | 194 |
|
127 | 195 | <plugin> |
| 196 | + <!-- https://mvnrepository.com/artifact/org.owasp/dependency-check-maven --> |
128 | 197 | <groupId>org.owasp</groupId> |
129 | 198 | <artifactId>dependency-check-maven</artifactId> |
130 | | - <version>5.0.0-M2</version> |
| 199 | + <version>${maven-dependency-check.version}</version> |
131 | 200 | <reportSets> |
132 | 201 | <reportSet> |
133 | 202 | <reports> |
|
136 | 205 | </reportSet> |
137 | 206 | </reportSets> |
138 | 207 | <configuration> |
139 | | - <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability> |
140 | | - <failBuildOnCVSS>8</failBuildOnCVSS> |
141 | | - <!-- <suppressionFile>dependency-check-report_suppressions.xml</suppressionFile> --> |
| 208 | + <format>${maven-dependency-check.format}</format> |
| 209 | + <failOnError>${maven-dependency-check.failOnError}</failOnError> |
| 210 | + <failBuildOnCVSS>${maven-dependency-check.failBuildOnCVSS}</failBuildOnCVSS> |
| 211 | + <outputDirectory>target/site</outputDirectory> |
| 212 | + <!--suppressionFile>${project.basedir}/dependency-check-report_suppressions.xml</suppressionFile --> |
142 | 213 | </configuration> |
143 | 214 | </plugin> |
144 | 215 | </plugins> |
|
0 commit comments