-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
123 lines (104 loc) · 4.12 KB
/
Copy pathpom.xml
File metadata and controls
123 lines (104 loc) · 4.12 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
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>org.atlanmod.platform</groupId>
<artifactId>platform</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Platform</name>
<description>A platform for all Atlanmod projects</description>
<url>https://github.com/atlanmod/atlanmod-platform</url>
<organization>
<name>Atlanmod</name>
<url>http://www.atlanmod.org</url>
</organization>
<modules>
<module>Commons</module>
<module>NeoEMF</module>
<module>emfviews</module>
<module>atl/releng/org.eclipse.m2m.atl.releng.parent</module>
<module>build-tools</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.0.0,3.5.4]</version>
<message>Ulterior versions of Maven 3.5.4 are in conflict with Tycho plugin</message>
</requireMavenVersion>
</rules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.11.0</version>
<dependencies>
<dependency>
<groupId>org.atlanmod.platform</groupId>
<artifactId>build-tools</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<rulesets>
<ruleset>build-tools/pmd/ruleset.xml</ruleset>
</rulesets>
<printFailingErrors>true</printFailingErrors>
<skipEmptyReport>false</skipEmptyReport>
<aggregate>true</aggregate>
<sourceEncoding>utf-8</sourceEncoding>
<excludes>**/antlr/**</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>summary</report>
<report>dependencies</report>
<report>dependency-info</report>
<report>dependency-convergence</report>
<report>plugins</report>
<report>plugin-management</report>
<report>modules</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>