1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
5 |
<modelVersion>4.0.0</modelVersion> |
6 |
|
7 |
<parent> |
8 |
<groupId>org.onehippo.forge</groupId> |
9 |
<artifactId>rating</artifactId> |
10 |
<version>1.01.00-SNAPSHOT</version> |
11 |
</parent> |
12 |
|
13 |
<name>Rating Editor CMS</name> |
14 |
<description>Rating Editor test and development CMS</description> |
15 |
<groupId>org.onehippo.forge</groupId> |
16 |
<artifactId>rating-cms</artifactId> |
17 |
<packaging>war</packaging> |
18 |
|
19 |
<dependencies> |
20 |
<dependency> |
21 |
<groupId>org.onehippo.forge</groupId> |
22 |
<artifactId>rating-addon</artifactId> |
23 |
<version>${version}</version> |
24 |
</dependency> |
25 |
<dependency> |
26 |
<groupId>org.hippoecm</groupId> |
27 |
<artifactId>hippo-ecm-quickstart-war</artifactId> |
28 |
<type>war</type> |
29 |
<scope>compile</scope> |
30 |
</dependency> |
31 |
|
32 |
<!-- atomikos dependecies for running jetty:run[-war|-exploded] --> |
33 |
<dependency> |
34 |
<groupId>com.atomikos</groupId> |
35 |
<artifactId>transactions-api</artifactId> |
36 |
<version>3.1.4</version> |
37 |
<scope>test</scope> |
38 |
</dependency> |
39 |
<dependency> |
40 |
<groupId>com.atomikos</groupId> |
41 |
<artifactId>transactions-jta</artifactId> |
42 |
<version>3.1.4</version> |
43 |
<scope>test</scope> |
44 |
</dependency> |
45 |
<dependency> |
46 |
<groupId>com.atomikos</groupId> |
47 |
<artifactId>transactions</artifactId> |
48 |
<version>3.1.4</version> |
49 |
<scope>test</scope> |
50 |
</dependency> |
51 |
<dependency> |
52 |
<groupId>com.atomikos</groupId> |
53 |
<artifactId>atomikos-util</artifactId> |
54 |
<version>3.1.4</version> |
55 |
<scope>test</scope> |
56 |
</dependency> |
57 |
</dependencies> |
58 |
|
59 |
<build> |
60 |
<plugins> |
61 |
<plugin> |
62 |
<groupId>org.apache.maven.plugins</groupId> |
63 |
<artifactId>maven-war-plugin</artifactId> |
64 |
<version>2.1-alpha-1</version> |
65 |
<configuration> |
66 |
<!-- webappDirectory>maven-generated</webappDirectory --> |
67 |
<overlays> |
68 |
<overlay> |
69 |
<groupId>org.hippoecm</groupId> |
70 |
<artifactId>hippo-ecm-quickstart-war</artifactId> |
71 |
</overlay> |
72 |
</overlays> |
73 |
</configuration> |
74 |
</plugin> |
75 |
<plugin> |
76 |
<groupId>org.mortbay.jetty</groupId> |
77 |
<artifactId>maven-jetty-plugin</artifactId> |
78 |
<version>6.1.10</version> |
79 |
<configuration> |
80 |
<scanIntervalSeconds>5</scanIntervalSeconds> |
81 |
<connectors> |
82 |
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
83 |
<port>8080</port> |
84 |
</connector> |
85 |
</connectors> |
86 |
<contextPath>/cms</contextPath> |
87 |
</configuration> |
88 |
<dependencies> |
89 |
<!-- atomikos dependecies for running jetty:run[-war|-exploded] --> |
90 |
<dependency> |
91 |
<groupId>com.atomikos</groupId> |
92 |
<artifactId>transactions-api</artifactId> |
93 |
<version>3.1.4</version> |
94 |
<scope>runtime</scope> |
95 |
</dependency> |
96 |
<dependency> |
97 |
<groupId>com.atomikos</groupId> |
98 |
<artifactId>transactions-jta</artifactId> |
99 |
<version>3.1.4</version> |
100 |
<scope>runtime</scope> |
101 |
</dependency> |
102 |
<dependency> |
103 |
<groupId>com.atomikos</groupId> |
104 |
<artifactId>transactions</artifactId> |
105 |
<version>3.1.4</version> |
106 |
<scope>runtime</scope> |
107 |
</dependency> |
108 |
<dependency> |
109 |
<groupId>com.atomikos</groupId> |
110 |
<artifactId>atomikos-util</artifactId> |
111 |
<version>3.1.4</version> |
112 |
<scope>runtime</scope> |
113 |
</dependency> |
114 |
|
115 |
</dependencies> |
116 |
</plugin> |
117 |
</plugins> |
118 |
</build> |
119 |
|
120 |
</project> |