-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
111 lines (111 loc) · 3.67 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.evolvis.tartools.maven-parent</groupId>
<artifactId>pom</artifactId>
<version>3.4-SNAPSHOT</version>
</parent>
<groupId>org.evolvis.tartools</groupId>
<artifactId>background-jobs</artifactId>
<version>1.29-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Background-Jobs</description>
<url>https://evolvis.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=tartools/background-jobs.git</url>
<licenses>
<license>
<name>MIT licence</name>
<url>https://opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Lukas Degener</name>
<email>[email protected]</email>
<organization>QVEST ⮡ dıgıtal</organization>
<organizationUrl>https://qvest-digital.com/</organizationUrl>
</developer>
</developers>
<properties>
<archiver.copyright.firstyear>2012</archiver.copyright.firstyear>
<archiver.copyright.lastyear>2022</archiver.copyright.lastyear>
<!-- for now (legacy code) -->
<javadoc.doclint>none</javadoc.doclint>
<sonar.sources>src/main</sonar.sources>
<sonar.tests>src/test</sonar.tests>
<!-- ‣ dependencies -->
<mockito.version>4.4.0</mockito.version>
<junit.version>4.13.2</junit.version>
<!-- ‣ maven plugins -->
<maven.owasp.dependency-check.version>10.0.3</maven.owasp.dependency-check.version>
<!-- ‣ release management -->
<project.build.outputTimestamp>2024-05-10T17:14:39Z</project.build.outputTimestamp>
</properties>
<scm>
<connection>scm:git:https://evolvis.org/anonscm/git/tartools/background-jobs.git</connection>
<developerConnection>scm:git:ssh://[email protected]/scmrepos/git/tartools/background-jobs.git</developerConnection>
<url>https://evolvis.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=tartools/background-jobs.git</url>
<tag>HEAD</tag>
</scm>
<build>
<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>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>