forked from hlship/tapx
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
186 lines (186 loc) · 6.32 KB
/
pom.xml
File metadata and controls
186 lines (186 loc) · 6.32 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?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.howardlewisship</groupId>
<artifactId>tapx-project</artifactId>
<version>1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Tapestry Extensions: Master POM</name>
<description>Enhanced components, services and utilities for Tapestry.</description>
<issueManagement>
<system>GitHub</system>
<url>http://github.com/hlship/tapx/issues</url>
</issueManagement>
<scm>
<connection>scm:git://github.com/hlship/tapx.git</connection>
<url>http://github.com/hlship/tapx/</url>
</scm>
<developers>
<developer>
<id>hls</id>
<name>Howard M. Lewis Ship</name>
<email>hlship@apache.org</email>
<url>http://howardlewisship.com</url>
<roles>
<role>Menace</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>Apache Software License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>tapx-core</module>
<module>tapx-datefield</module>
<module>tapx-templating</module>
<module>tapx-plainmessage</module>
<module>tapx-prototype</module>
<module>tapx-yui</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>src/test/conf/testng.xml</suiteXmlFile>
</suiteXmlFiles>
<argLine>-Xmx500m</argLine>
<redirectTestOutputToFile>false</redirectTestOutputToFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<downloadSources>true</downloadSources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<compress>true</compress>
<index>true</index>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- Will be true for profile "deploy" -->
<updateReleaseInfo>${update-release-info}</updateReleaseInfo>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<!-- Used only when cuttting a full release. Configures the deploy plugin to mark
each artifact as a release (especially important for the archetype). -->
<id>deploy</id>
<properties>
<update-release-info>true</update-release-info>
<!-- Don't re-run tests as part of the deploy build. -->
<maven.test.skip>true</maven.test.skip>
</properties>
<distributionManagement>
<site>
<id>tapestry360-stable</id>
<!-- Maven will tack on the artifact id as a subdirectory. -->
<url>file:/var/www/projects/tapx</url>
</site>
</distributionManagement>
</profile>
<!-- Only enable Javadoc as part of the output site when the javadoc profile is active. This is because
JavaDoc can take considerable time to generate and usually we're interested in just the
generated site documentation. -->
<profile>
<id>javadoc</id>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- Version 2.3 is broken: See http://jira.codehaus.org/browse/MJAVADOC-145 -->
<version>2.2</version>
<configuration>
<linksource>true</linksource>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
<link>http://java.sun.com/j2ee/1.4/docs/api/</link>
<link>http://jakarta.apache.org/commons/logging/apidocs/</link>
</links>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
<repositories>
<repository>
<id>apache-snapshots</id>
<url>http://repository.apache.org/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>tapestry360</id>
<url>file:/var/www/maven-repository</url>
</repository>
<snapshotRepository>
<id>tapestry360-snapshots</id>
<url>file:/var/www/maven-snapshot-repository</url>
</snapshotRepository>
<site>
<id>tapestry360-nightly</id>
<!-- Overridden by the deploy profile. -->
<!-- Maven will tack on the artifact id. -->
<url>file:/var/www/nightly/tapx</url>
</site>
</distributionManagement>
<properties>
<tapestry-release-version>5.2.0-SNAPSHOT</tapestry-release-version>
</properties>
</project>