-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
70 lines (65 loc) · 2.65 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
<?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>
<artifactId>root-project</artifactId>
<groupId>tiw.is</groupId>
<version>1.0-SNAPSHOT</version>
<name>root-project</name>
<packaging>pom</packaging>
<modules>
<module>base-processor</module>
<module>server</module>
<module>catalogue-vols</module>
<module>integration</module>
<module>tapis</module>
<module>arrivee</module>
<module>moniteur</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
<sonar.projectName>TIW_IS</sonar.projectName>
<sonar.projectKey>TIW_IS_P2105081</sonar.projectKey>
<sonar.qualitygate.wait>true</sonar.qualitygate.wait>
<jacoco.version>0.8.11</jacoco.version>
<sonar.coverage.jacoco.xmlReportPaths>
${project.basedir}/../integration/target/site/jacoco-aggregate/jacoco.xml,
${project.basedir}/integration/target/site/jacoco-aggregate/jacoco.xml
</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>