|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
| 6 | + <parent> |
| 7 | + <groupId>org.springframework.boot</groupId> |
| 8 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 9 | + <version>3.0.6</version> |
| 10 | + <relativePath /> |
| 11 | + <!-- lookup parent from repository --> |
| 12 | + </parent> |
6 | 13 | <groupId>de.doubleslash</groupId> |
7 | 14 | <artifactId>keeptime</artifactId> |
8 | 15 | <version>2.0.0-SNAPSHOT</version> |
9 | | - <packaging>jar</packaging> |
10 | 16 |
|
| 17 | + <packaging>jar</packaging> |
11 | 18 | <name>KeepTime</name> |
| 19 | + |
12 | 20 | <description>Time tracker</description> |
13 | 21 |
|
| 22 | + <organization> |
| 23 | + <name>doubleSlash Net-Business GmbH</name> |
| 24 | + <url>https://www.doubleslash.de/</url> |
| 25 | + </organization> |
| 26 | + |
14 | 27 | <licenses> |
15 | 28 | <license> |
16 | 29 | <name>GNU General Public License (GPL) version 3.0</name> |
|
19 | 32 | </license> |
20 | 33 | </licenses> |
21 | 34 |
|
22 | | - <organization> |
23 | | - <name>doubleSlash Net-Business GmbH</name> |
24 | | - <url>https://www.doubleslash.de/</url> |
25 | | - </organization> |
26 | | - |
27 | | - <parent> |
28 | | - <groupId>org.springframework.boot</groupId> |
29 | | - <artifactId>spring-boot-starter-parent</artifactId> |
30 | | - <version>3.0.6</version> |
31 | | - <relativePath /> <!-- lookup parent from repository --> |
32 | | - </parent> |
33 | | - |
34 | 35 | <properties> |
35 | 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
36 | 37 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
142 | 143 | <scope>test</scope> |
143 | 144 | </dependency> |
144 | 145 | </dependencies> |
145 | | - <profiles> |
146 | | - <profile> |
147 | | - <id>coverage</id> |
148 | | - <build> |
149 | | - <plugins> |
150 | | - <plugin> |
151 | | - <groupId>org.jacoco</groupId> |
152 | | - <artifactId>jacoco-maven-plugin</artifactId> |
153 | | - <version>0.8.7</version> |
154 | | - <executions> |
155 | | - <execution> |
156 | | - <id>prepare-agent</id> |
157 | | - <goals> |
158 | | - <goal>prepare-agent</goal> |
159 | | - </goals> |
160 | | - </execution> |
161 | | - <execution> |
162 | | - <id>report</id> |
163 | | - <goals> |
164 | | - <goal>report</goal> |
165 | | - </goals> |
166 | | - <configuration> |
167 | | - <formats> |
168 | | - <format>XML</format> |
169 | | - </formats> |
170 | | - </configuration> |
171 | | - </execution> |
172 | | - </executions> |
173 | | - </plugin> |
174 | | - </plugins> |
175 | | - </build> |
176 | | - </profile> |
177 | | - </profiles> |
178 | 146 | <build> |
179 | 147 | <plugins> |
180 | 148 | <plugin> |
|
229 | 197 | <suppressionFile>dependency-check-report_suppressions.xml</suppressionFile> |
230 | 198 | </configuration> |
231 | 199 | <executions> |
232 | | - <execution> |
233 | | - <goals> |
234 | | - <goal>check</goal> |
235 | | - </goals> |
236 | | - </execution> |
| 200 | + <execution> |
| 201 | + <goals> |
| 202 | + <goal>check</goal> |
| 203 | + </goals> |
| 204 | + </execution> |
237 | 205 | </executions> |
238 | 206 | </plugin> |
239 | 207 | </plugins> |
240 | 208 | </build> |
241 | | - |
242 | 209 | <!-- generate site with mvn site (including dependency check) --> |
243 | 210 | <reporting> |
244 | 211 | <plugins> |
|
264 | 231 | </plugin> |
265 | 232 | </plugins> |
266 | 233 | </reporting> |
| 234 | + |
| 235 | + <profiles> |
| 236 | + <profile> |
| 237 | + <id>coverage</id> |
| 238 | + <build> |
| 239 | + <plugins> |
| 240 | + <plugin> |
| 241 | + <groupId>org.jacoco</groupId> |
| 242 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 243 | + <version>0.8.7</version> |
| 244 | + <executions> |
| 245 | + <execution> |
| 246 | + <id>prepare-agent</id> |
| 247 | + <goals> |
| 248 | + <goal>prepare-agent</goal> |
| 249 | + </goals> |
| 250 | + </execution> |
| 251 | + <execution> |
| 252 | + <id>report</id> |
| 253 | + <goals> |
| 254 | + <goal>report</goal> |
| 255 | + </goals> |
| 256 | + <configuration> |
| 257 | + <formats> |
| 258 | + <format>XML</format> |
| 259 | + </formats> |
| 260 | + </configuration> |
| 261 | + </execution> |
| 262 | + </executions> |
| 263 | + </plugin> |
| 264 | + </plugins> |
| 265 | + </build> |
| 266 | + </profile> |
| 267 | + </profiles> |
267 | 268 | </project> |
0 commit comments