forked from UISpec4J/UISpec4J
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
56 lines (50 loc) · 1.85 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
<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">
<!-- POM's layout - http://www.javaworld.com/javaworld/jw-05-2006/jw-0529-maven.html -->
<modelVersion>4.0.0</modelVersion>
<!-- POM Relationships -->
<groupId>org.uispec4j</groupId>
<artifactId>uispec4j-root</artifactId>
<version>2.5-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>uispec4j</module>
<module>addressbook</module>
<module>calculator</module>
</modules>
<!-- Project Information -->
<name>uispec4j - root</name>
<description>uispec4j - root</description>
<url>http://www.uispec4j.org</url>
<inceptionYear>2004</inceptionYear>
<repositories>
<repository>
<id>codehaus</id>
<url>http://http://repository.codehaus.org/</url>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Dfile.encoding=MacRoman</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>x-MacRoman</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-idea-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>