forked from ocpsoft/rewrite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
53 lines (49 loc) · 1.54 KB
/
Copy pathpom.xml
File metadata and controls
53 lines (49 loc) · 1.54 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
<?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>
<parent>
<artifactId>rewrite-parent</artifactId>
<groupId>org.ocpsoft.rewrite</groupId>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<groupId>org.ocpsoft.rewrite.showcase</groupId>
<artifactId>rewrite-showcase</artifactId>
<packaging>pom</packaging>
<modules>
<module>access-control</module>
<module>composite-query</module>
<module>rest-ws</module>
<module>transform</module>
<module>bookstore</module>
</modules>
<build>
<pluginManagement>
<plugins>
<!-- Required to work around JDK7 issue: http://jira.codehaus.org/browse/MWAR-279 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<version>${version.jboss.spec}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ocpsoft.prettytime</groupId>
<artifactId>prettytime</artifactId>
<version>1.0.8.Final</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>