-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpom.xml
88 lines (88 loc) · 3.4 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
<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">
<properties>
<!-- Eclipse's Tomcat Server Name. -->
<tomcat-server>Tomcat v6.0 Server</tomcat-server>
<!-- Change to skip unit tests on these modules. A better way to change these is to use the
command line. e.g. mvn -Dskip.mrgeo.core.tests=true -->
<skip.hoot.services.tests>false</skip.hoot.services.tests>
<!-- do not touch anything below here. Bad things could happen -->
<!-- revision>${user.name}-${buildNumber}${localModified}</revision -->
<revision>${user.name}</revision>
<hoot-short-version>${project.artifactId}</hoot-short-version>
<hoot-short-full-war>${project.parent.artifactId}</hoot-short-full-war>
<hoot-version>${hoot-short-version}-${revision}</hoot-version>
<hoot-full-war>${project.parent.artifactId}-${project.version}-${revision}</hoot-full-war>
<id-short-version>${project.artifactId}</id-short-version>
<id-short-full-war>${project.parent.artifactId}</id-short-full-war>
<id-version>${id-short-version}-${revision}</id-version>
<id-full-war>${project.parent.artifactId}-${project.version}-${revision}</id-full-war>
</properties>
<modelVersion>4.0.0</modelVersion>
<groupId>hoot</groupId>
<artifactId>hoot-java</artifactId>
<packaging>pom</packaging>
<version>0.0.1</version>
<repositories>
</repositories>
<build>
<defaultGoal>install</defaultGoal>
<finalName>${hoot-version}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<!-- this argument allows classes within rt.jar to be referenced... -->
<compilerArgument>-XDignore.symbol.file=true</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<!-- outputDirectory>../../../coverage/services</outputDirectory -->
<formats>
<format>html</format>
<!-- format>xml</format -->
</formats>
<quiet>true</quiet>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</reporting>
<profiles>
<!-- NOTE!!! Very important!
========================
We have gone out of our way to eliminate apache's commons-logging (now stagnant) with
slf4j for our logging "facade." As such, make sure when adding jars to exclude any dependencies to
commons-logging.
slf4j provides jcl-over-slf4j to bridge any 3rd party usages of commons logging into slf4j.
-->
<!-- Module build profiles -->
<profile>
<id>build-all</id>
<activation>
<property>
<name>modules</name>
<value>all</value>
</property>
</activation>
<modules>
<module>hoot-services</module>
<module>distribution</module>
</modules>
</profile>
</profiles>
</project>