1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2008 Hippo |
4 |
|
5 |
Licensed under the Apache License, Version 2.0 (the "License"); |
6 |
you may not use this file except in compliance with the License. |
7 |
You may obtain a copy of the License at |
8 |
|
9 |
http://www.apache.org/licenses/LICENSE-2.0 |
10 |
|
11 |
Unless required by applicable law or agreed to in writing, software |
12 |
distributed under the License is distributed on an "AS IS" |
13 |
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 |
See the License for the specific language governing permissions and |
15 |
limitations under the License. |
16 |
--><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"> |
17 |
<modelVersion>4.0.0</modelVersion> |
18 |
|
19 |
<parent> |
20 |
<groupId>org.onehippo.ecm</groupId> |
21 |
<artifactId>hst_docs</artifactId> |
22 |
<version>1.0-SNAPSHOT</version> |
23 |
<relativePath>../pom.xml</relativePath> |
24 |
</parent> |
25 |
|
26 |
<name>My Hippo Site Toolkit Project CMS WAR package</name> |
27 |
<description>My Hippo Site Toolkit Project CMS WAR package</description> |
28 |
<groupId>org.onehippo.ecm</groupId> |
29 |
<artifactId>hst_docs-cms</artifactId> |
30 |
<packaging>war</packaging> |
31 |
|
32 |
<dependencies> |
33 |
<dependency> |
34 |
<groupId>org.hippoecm</groupId> |
35 |
<artifactId>hippo-ecm-package-war</artifactId> |
36 |
<type>war</type> |
37 |
</dependency> |
38 |
<dependency> |
39 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
40 |
<artifactId>hst-addon-repository</artifactId> |
41 |
<type>jar</type> |
42 |
</dependency><!-- |
43 |
<dependency> |
44 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
45 |
<artifactId>hst-addon-configuration-editor-frontend</artifactId> |
46 |
<type>jar</type> |
47 |
</dependency> |
48 |
<dependency> |
49 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
50 |
<artifactId>hst-addon-configuration-editor-repository</artifactId> |
51 |
<type>jar</type> |
52 |
</dependency> |
53 |
--><dependency> |
54 |
<groupId>org.onehippo.ecm</groupId> |
55 |
<artifactId>hst_docs-content</artifactId> |
56 |
<version>1.0-SNAPSHOT</version> |
57 |
<type>jar</type> |
58 |
</dependency> |
59 |
</dependencies> |
60 |
|
61 |
<build> |
62 |
<defaultGoal>package</defaultGoal> |
63 |
<plugins> |
64 |
<plugin> |
65 |
<groupId>org.apache.maven.plugins</groupId> |
66 |
<artifactId>maven-war-plugin</artifactId> |
67 |
<version>2.1-alpha-1</version> |
68 |
<configuration> |
69 |
<manifest> |
70 |
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
71 |
</manifest> |
72 |
<archive> |
73 |
<manifestEntries> |
74 |
<Implementation-Build>${buildNumber}</Implementation-Build> |
75 |
</manifestEntries> |
76 |
</archive> |
77 |
<overlays> |
78 |
<overlay> |
79 |
<groupId>org.hippoecm</groupId> |
80 |
<artifactId>hippo-ecm-package-war</artifactId> |
81 |
</overlay> |
82 |
</overlays> |
83 |
</configuration> |
84 |
</plugin> |
85 |
<plugin> |
86 |
<groupId>org.mortbay.jetty</groupId> |
87 |
<artifactId>maven-jetty-plugin</artifactId> |
88 |
<version>6.1.10</version> |
89 |
<configuration> |
90 |
<stopPort>9966</stopPort> |
91 |
<stopKey>stopCmsJetty</stopKey> |
92 |
<scanIntervalSeconds>5</scanIntervalSeconds> |
93 |
<connectors> |
94 |
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
95 |
<port>8080</port> |
96 |
</connector> |
97 |
</connectors> |
98 |
<contextPath>/cms</contextPath> |
99 |
</configuration> |
100 |
<dependencies> |
101 |
<!-- atomikos dependecies for running jetty:run[-war|-exploded] --> |
102 |
<dependency> |
103 |
<groupId>com.atomikos</groupId> |
104 |
<artifactId>transactions-api</artifactId> |
105 |
<version>3.1.4</version> |
106 |
<scope>runtime</scope> |
107 |
</dependency> |
108 |
<dependency> |
109 |
<groupId>com.atomikos</groupId> |
110 |
<artifactId>transactions-jta</artifactId> |
111 |
<version>3.1.4</version> |
112 |
<scope>runtime</scope> |
113 |
</dependency> |
114 |
<dependency> |
115 |
<groupId>com.atomikos</groupId> |
116 |
<artifactId>transactions</artifactId> |
117 |
<version>3.1.4</version> |
118 |
<scope>runtime</scope> |
119 |
</dependency> |
120 |
<dependency> |
121 |
<groupId>com.atomikos</groupId> |
122 |
<artifactId>atomikos-util</artifactId> |
123 |
<version>3.1.4</version> |
124 |
<scope>runtime</scope> |
125 |
</dependency> |
126 |
</dependencies> |
127 |
</plugin> |
128 |
</plugins> |
129 |
</build> |
130 |
|
131 |
</project> |