This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
forked from TheTransitClock/transitime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
122 lines (122 loc) · 3.99 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
<?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>2.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>transitclockQuickStart</module>
<module>transitclockTraccarClient</module>
<module>transitclockBarefootClient</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<sonar.organization>bklebe</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<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>transitclockQuickStart</module>
<module>transitclockTraccarClient</module>
<module>transitclockBarefootClient</module>
</modules>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-wrapper-plugin</artifactId>
<version>3.2.0</version>
<type>maven-plugin</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>au.com.acegi</groupId>
<artifactId>xml-format-maven-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<id>xml-format</id>
<goals>
<goal>xml-format</goal>
</goals>
<configuration>
<excludes>.run/,.idea/</excludes>
<indentSize>2</indentSize>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.36.0</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<formats>
<!-- you can define as many formats as you want, each is independent -->
<format>
<!-- define the files to apply to -->
<includes>
<include>*.md</include>
<include>.gitignore</include>
</includes>
<!-- define the steps to apply to those files -->
<trimTrailingWhitespace/>
<endWithNewline/>
</format>
</formats>
<!-- define a language-specific format -->
<java>
<cleanthat/>
<googleJavaFormat/>
<!-- has its own section below -->
<importOrder/>
<!-- standard import order -->
<removeUnusedImports/>
<!-- self-explanatory -->
<formatAnnotations/>
<!-- fixes formatting of type annotations, see below -->
</java>
</configuration>
</plugin>
</plugins>
</build>
</project>