-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
63 lines (63 loc) · 2.15 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
<project>
<modelVersion>4.0.0</modelVersion>
<artifactId>root</artifactId>
<version>6.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>edu.rice.cs.hpcviewer</groupId>
<artifactId>edu.rice.cs.hpcviewer.configuration</artifactId>
<version>6.0.0-SNAPSHOT</version>
<relativePath>./releng</relativePath>
</parent>
<properties>
<!--
The bundles are tested by seperate test bundles and test coverage results are
aggregated into a report project. Tell SonarCloud to use the aggregated data.
-->
<sonar.coverage.jacoco.xmlReportPaths>${basedir}/../${aggregate.report.dir}</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<modules>
<module>externals</module>
<module>edu.rice.cs.hpcdata</module>
<module>edu.rice.cs.hpcdata.merge</module>
<module>edu.rice.cs.hpcdata.app</module>
<module>edu.rice.cs.hpcfilter</module>
<module>edu.rice.cs.hpcbase</module>
<module>edu.rice.cs.hpcgraph</module>
<module>edu.rice.cs.hpclog</module>
<module>edu.rice.cs.hpcsetting</module>
<module>edu.rice.cs.hpcmerge</module>
<module>edu.rice.cs.hpctoolcontrol</module>
<module>edu.rice.cs.hpclocal</module>
<module>edu.rice.cs.hpcremote.jsch</module>
<module>edu.rice.cs.hpcremote.common</module>
<module>edu.rice.cs.hpcremote.client</module>
<module>edu.rice.cs.hpcremote</module>
<module>edu.rice.cs.hpctree</module>
<module>edu.rice.cs.hpctraceviewer.config</module>
<module>edu.rice.cs.hpctraceviewer.filter</module>
<module>edu.rice.cs.hpctraceviewer.data</module>
<module>edu.rice.cs.hpctraceviewer.ui</module>
<module>edu.rice.cs.hpcmetric</module>
<module>edu.rice.cs.hpcviewer.ui</module>
<module>edu.rice.cs.hpcviewer.feature</module>
<module>edu.rice.cs.hpcviewer.product</module>
<module>tests</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.19.0</version>
<configuration>
<linkXref>false</linkXref>
<targetJdk>17</targetJdk>
<excludes>
<exclude>com/graphbuilder/**/*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>