-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
192 lines (192 loc) · 6.27 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.evolvis.tartools.maven-parent</groupId>
<artifactId>pom</artifactId>
<version>3.3</version>
</parent>
<groupId>com.qvest-digital.tforce</groupId>
<artifactId>hispring</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>hispring</description>
<url/>
<licenses>
<license/>
</licenses>
<developers>
<developer>
<name>mirabilos</name>
<email>[email protected]</email>
<organization>QVEST ⮡ dıgıtal</organization>
<organizationUrl>https://qvest-digital.com/</organizationUrl>
</developer>
</developers>
<organization>
<name>Qvest Digital AG, Bonn, Germany</name>
<url>https://qvest-digital.com/</url>
</organization>
<properties>
<archiver.copyright.firstyear>2024</archiver.copyright.firstyear>
<archiver.copyright.lastyear>2024</archiver.copyright.lastyear>
<archiver.copyright.years>2024</archiver.copyright.years>
<javaRelease>17</javaRelease>
<spring-boot.run.main-class>${start-class}</spring-boot.run.main-class>
<!-- ‣ maven plugins -->
<maven.owasp.dependency-check.version>10.0.3</maven.owasp.dependency-check.version>
<!-- ‣ dependency management -->
<spring-boot.version>3.3.1</spring-boot.version>
<!-- ‣ release management -->
<project.build.outputTimestamp>1980-01-01T00:00:02Z</project.build.outputTimestamp>
</properties>
<scm>
<connection/>
<developerConnection/>
<tag/>
<url/>
</scm>
<profiles>
<profile>
<id>with-implicit-dependencies</id>
<activation>
<property>
<name>!without-implicit-dependencies</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<parameters>true</parameters>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>${start-class}</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>${start-class}</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<!-- mvn -Ddependency-check.skip … -->
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${maven.owasp.dependency-check.version}</version>
<inherited>false</inherited>
<executions>
<execution>
<id>owasp-check</id>
<phase>install</phase>
<goals>
<goal>aggregate</goal>
</goals>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
<scanSet>
<fileSet>
<directory>src</directory>
</fileSet>
</scanSet>
<skipArtifactType>pom</skipArtifactType>
<!-- suppressionFiles>
<suppressionFile>src/main/ancillary/dependency-check-suppressions.xml</suppressionFile>
</suppressionFiles -->
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyse-dependency-usage</id>
<configuration>
<ignoredUnusedDeclaredDependencies>
<!-- importers in Spring Boot -->
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-test</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>org.springframework.boot:spring-boot-starter-web</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
<ignoredUsedUndeclaredDependencies>
<!-- imported by Spring Boot -->
<ignoredUsedUndeclaredDependency>org.springframework:spring-context</ignoredUsedUndeclaredDependency>
<ignoredUsedUndeclaredDependency>org.springframework.boot:spring-boot-test</ignoredUsedUndeclaredDependency>
<ignoredUsedUndeclaredDependency>org.springframework:spring-web</ignoredUsedUndeclaredDependency>
<ignoredUsedUndeclaredDependency>org.springframework.boot:spring-boot</ignoredUsedUndeclaredDependency>
<ignoredUsedUndeclaredDependency>org.junit.jupiter:junit-jupiter-api</ignoredUsedUndeclaredDependency>
<ignoredUsedUndeclaredDependency>org.springframework.boot:spring-boot-autoconfigure</ignoredUsedUndeclaredDependency>
</ignoredUsedUndeclaredDependencies>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<mainClass>${spring-boot.run.main-class}</mainClass>
</configuration>
<executions>
<execution>
<id>repackage</id>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>