-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
115 lines (111 loc) · 4 KB
/
pom.xml
File metadata and controls
115 lines (111 loc) · 4 KB
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
<?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>
<groupId>TheTransitClock</groupId>
<artifactId>transitclock</artifactId>
<version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>transitclock</name>
<url>http://www.transitclock.org//</url>
<modules>
<module>transitclock</module>
<module>transitclockApi</module>
<module>transitclockWebapp</module>
<module>transitclockTraccarClient</module>
<module>transitclockBarefootClient</module>
<module>coverage-report</module>
</modules>
<!-- Pin transitives that otherwise resolve to JAXB 2.x build POMs from
the long-decommissioned jvnet-nexus / java.net repositories. Those
POMs reference broken parent coordinates and ${tools.jar} system
paths that fail under modern Maven; pinning these to current
Jakarta-line versions forces clean resolution. Hibernate 6.5 +
jakarta.xml.bind 4.0.2 is the source of truth for the runtime
stack — these are belt-and-suspenders for transitives. -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>4.0.5</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-core</artifactId>
<version>4.0.5</version>
</dependency>
<dependency>
<groupId>com.sun.istack</groupId>
<artifactId>istack-commons-runtime</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>com.sun.xml.fastinfoset</groupId>
<artifactId>FastInfoset</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>skip-integration-tests</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>include-integration-tests</id>
<modules>
<module>transitclockIntegration</module>
<module>transitclock</module>
<module>transitclockApi</module>
<module>transitclockWebapp</module>
<module>transitclockTraccarClient</module>
<module>transitclockBarefootClient</module>
<module>coverage-report</module>
</modules>
</profile>
<profile>
<id>include-pipeline-tests</id>
<modules>
<module>transitclockPipelineTests</module>
</modules>
</profile>
<profile>
<id>run-all-tests</id>
<modules>
<module>transitclockIntegration</module>
<module>transitclockPipelineTests</module>
</modules>
</profile>
</profiles>
</project>