1 |
<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"> |
2 |
<modelVersion>4.0.0</modelVersion> |
3 |
|
4 |
<parent> |
5 |
<groupId>org.onehippo.ecm</groupId> |
6 |
<artifactId>hst_docs</artifactId> |
7 |
<version>0.02.00</version> |
8 |
<relativePath>../pom.xml</relativePath> |
9 |
</parent> |
10 |
|
11 |
<name>My Hippo Site Toolkit Project CMS WAR package</name> |
12 |
<description>My Hippo Site Toolkit Project CMS WAR package</description> |
13 |
<groupId>org.onehippo.ecm</groupId> |
14 |
<artifactId>hst_docs-cms</artifactId> |
15 |
<packaging>war</packaging> |
16 |
|
17 |
<dependencies> |
18 |
<dependency> |
19 |
<groupId>org.hippoecm</groupId> |
20 |
<artifactId>hippo-ecm-package-war</artifactId> |
21 |
<type>war</type> |
22 |
</dependency> |
23 |
<dependency> |
24 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
25 |
<artifactId>hst-addon-repository</artifactId> |
26 |
<type>jar</type> |
27 |
</dependency><!-- |
28 |
<dependency> |
29 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
30 |
<artifactId>hst-addon-configuration-editor-frontend</artifactId> |
31 |
<type>jar</type> |
32 |
</dependency> |
33 |
<dependency> |
34 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
35 |
<artifactId>hst-addon-configuration-editor-repository</artifactId> |
36 |
<type>jar</type> |
37 |
</dependency> |
38 |
--><dependency> |
39 |
<groupId>org.onehippo.ecm</groupId> |
40 |
<artifactId>hst_docs-content</artifactId> |
41 |
<version>0.02.00</version> |
42 |
<type>jar</type> |
43 |
</dependency> |
44 |
</dependencies> |
45 |
|
46 |
<build> |
47 |
<defaultGoal>package</defaultGoal> |
48 |
<plugins> |
49 |
<plugin> |
50 |
<groupId>org.apache.maven.plugins</groupId> |
51 |
<artifactId>maven-war-plugin</artifactId> |
52 |
<version>2.1-alpha-1</version> |
53 |
<configuration> |
54 |
<manifest> |
55 |
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
56 |
</manifest> |
57 |
<archive> |
58 |
<manifestEntries> |
59 |
<Implementation-Build>${buildNumber}</Implementation-Build> |
60 |
</manifestEntries> |
61 |
</archive> |
62 |
<overlays> |
63 |
<overlay> |
64 |
<groupId>org.hippoecm</groupId> |
65 |
<artifactId>hippo-ecm-package-war</artifactId> |
66 |
</overlay> |
67 |
</overlays> |
68 |
</configuration> |
69 |
</plugin> |
70 |
<plugin> |
71 |
<groupId>org.mortbay.jetty</groupId> |
72 |
<artifactId>maven-jetty-plugin</artifactId> |
73 |
<version>6.1.10</version> |
74 |
<configuration> |
75 |
<stopPort>9966</stopPort> |
76 |
<stopKey>stopCmsJetty</stopKey> |
77 |
<scanIntervalSeconds>5</scanIntervalSeconds> |
78 |
<connectors> |
79 |
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
80 |
<port>8080</port> |
81 |
</connector> |
82 |
</connectors> |
83 |
<contextPath>/cms</contextPath> |
84 |
</configuration> |
85 |
<dependencies> |
86 |
<!-- atomikos dependecies for running jetty:run[-war|-exploded] --> |
87 |
<dependency> |
88 |
<groupId>com.atomikos</groupId> |
89 |
<artifactId>transactions-api</artifactId> |
90 |
<version>3.1.4</version> |
91 |
<scope>runtime</scope> |
92 |
</dependency> |
93 |
<dependency> |
94 |
<groupId>com.atomikos</groupId> |
95 |
<artifactId>transactions-jta</artifactId> |
96 |
<version>3.1.4</version> |
97 |
<scope>runtime</scope> |
98 |
</dependency> |
99 |
<dependency> |
100 |
<groupId>com.atomikos</groupId> |
101 |
<artifactId>transactions</artifactId> |
102 |
<version>3.1.4</version> |
103 |
<scope>runtime</scope> |
104 |
</dependency> |
105 |
<dependency> |
106 |
<groupId>com.atomikos</groupId> |
107 |
<artifactId>atomikos-util</artifactId> |
108 |
<version>3.1.4</version> |
109 |
<scope>runtime</scope> |
110 |
</dependency> |
111 |
</dependencies> |
112 |
</plugin> |
113 |
</plugins> |
114 |
</build> |
115 |
|
116 |
</project> |