-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
91 lines (86 loc) · 2.96 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
<?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>
<groupId>com.github.strategic-primer</groupId>
<artifactId>assistive-programs</artifactId>
<version>${revision}</version>
<properties>
<revision>0.5-SNAPSHOT</revision>
<maven.compiler.release>23</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.platform.version>1.8.0</junit.platform.version>
<junit.jupiter.version>5.11.0</junit.jupiter.version>
<javatuples.version>1.2</javatuples.version>
<jetbrains.annotations.version>24.1.0</jetbrains.annotations.version>
<auto-service.version>1.1.1</auto-service.version>
</properties>
<packaging>pom</packaging>
<modules>
<module>drivers.common</module>
<module>drivers.exploration.common</module>
<module>drivers.exploration.old</module>
<module>drivers.generators</module>
<module>drivers.gui.common</module>
<module>drivers.query</module>
<module>drivers.utility</module>
<module>drivers.worker.common</module>
<module>mining</module>
<module>model</module>
<module>report</module>
<module>main</module>
<module>lovelace-util</module>
<module>third-party</module>
</modules>
<!-- TODO: Investigate maven-enforcer-plugin -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${auto-service.version}</version>
</path>
</annotationProcessorPaths>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>parse-version</id>
<phase>validate</phase>
<goals>
<goal>parse-version</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>