-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
106 lines (106 loc) · 4.32 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
<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>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-root</artifactId>
<packaging>pom</packaging>
<version>0.0.0</version>
<description>Project keeper is a tool that verifies and fixes project setups.</description>
<url>https://github.com/exasol/project-keeper/</url>
<name>Project Keeper Root Project</name>
<properties>
<sonar.organization>exasol</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<modules>
<module>shared-model-classes</module>
<module>project-keeper</module>
<module>project-keeper-cli</module>
<module>shared-test-setup</module>
<module>maven-project-crawler</module>
<module>project-keeper-maven-plugin</module>
<module>parent-pom</module>
<module>coverage-aggregator</module>
</modules>
<build>
<resources>
<resource>
<!-- Trace requirement coverage in PK configuration -->
<directory>.project-keeper.yml</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.6.3</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.itsallcode</groupId>
<artifactId>openfasttrace-maven-plugin</artifactId>
<version>2.3.0</version>
<executions>
<execution>
<id>trace-requirements</id>
<goals>
<goal>trace</goal>
</goals>
</execution>
</executions>
<configuration>
<failBuild>true</failBuild>
<reportOutputFormat>html</reportOutputFormat>
<reportVerbosity>ALL</reportVerbosity>
<reportShowOrigin>true</reportShowOrigin>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>com.exasol</groupId>
<artifactId>error-code-crawler-maven-plugin</artifactId>
<version>2.0.3</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.ossindex.maven</groupId>
<artifactId>ossindex-maven-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<excludeVulnerabilityIds>
<!-- Ignore vulnerability in org.glassfish:javax.json:jar:1.1.4:runtime
as this is accepted for accessing exasol json documents on GitHub -->
<exclude>CVE-2023-7272</exclude>
</excludeVulnerabilityIds>
</configuration>
</plugin>
</plugins>
</build>
</project>