1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2011-2014 Hippo B.V. (http://www.onehippo.com) |
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" BASIS, |
13 |
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 |
--> |
17 |
<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"> |
18 |
<modelVersion>4.0.0</modelVersion> |
19 |
|
20 |
<parent> |
21 |
<groupId>org.onehippo.cms7</groupId> |
22 |
<artifactId>hippo-cms7-project</artifactId> |
23 |
<version>27-SNAPSHOT</version> |
24 |
</parent> |
25 |
|
26 |
|
27 |
<artifactId>hippo-addon-channel-manager</artifactId> |
28 |
<version>2.27.00-restyling-SNAPSHOT</version> |
29 |
<packaging>pom</packaging> |
30 |
<inceptionYear>2011</inceptionYear> |
31 |
|
32 |
<name>Hippo Addon Channel Manager</name> |
33 |
|
34 |
<properties> |
35 |
<!-- use root project name for all project modules NOTICE files, should be the same as in the root NOTICE file --> |
36 |
<notice.project.name>Hippo Addon Channel Manager</notice.project.name> |
37 |
|
38 |
<hippo.repository.version>2.27.00-SNAPSHOT</hippo.repository.version> |
39 |
<hippo.cms.version>2.27.00-SNAPSHOT</hippo.cms.version> |
40 |
<hippo.hst.version>2.29.00-SNAPSHOT</hippo.hst.version> |
41 |
<hippo.addon-hst-configuration-editor.version>1.14.00-SNAPSHOT</hippo.addon-hst-configuration-editor.version> |
42 |
<hippo.frontend.plugins.version>1.02.00-SNAPSHOT</hippo.frontend.plugins.version> |
43 |
<hippo.frontend.theme.version>1.02.00</hippo.frontend.theme.version> |
44 |
|
45 |
<commons-lang.version>2.6</commons-lang.version> |
46 |
|
47 |
<jslint.plugin.version>1.0.1</jslint.plugin.version> |
48 |
<yuicompressor.plugin.version>1.3.0</yuicompressor.plugin.version> |
49 |
|
50 |
<!-- test related --> |
51 |
<junit.version>4.5</junit.version> |
52 |
<easymock.version>3.0</easymock.version> |
53 |
|
54 |
<sonar.l10n.locales>nl,fr,it,de</sonar.l10n.locales> |
55 |
</properties> |
56 |
|
57 |
<repositories> |
58 |
<repository> |
59 |
<id>hippo</id> |
60 |
<name>Hippo Maven 2</name> |
61 |
<url>http://maven.onehippo.com/maven2/</url> |
62 |
<snapshots> |
63 |
<enabled>false</enabled> |
64 |
</snapshots> |
65 |
<releases> |
66 |
<updatePolicy>never</updatePolicy> |
67 |
</releases> |
68 |
</repository> |
69 |
</repositories> |
70 |
|
71 |
<dependencyManagement> |
72 |
<dependencies> |
73 |
<!-- CXF --> |
74 |
<dependency> |
75 |
<groupId>org.apache.cxf</groupId> |
76 |
<artifactId>cxf-rt-frontend-jaxrs</artifactId> |
77 |
<version>${cxf.version}</version> |
78 |
<scope>provided</scope> |
79 |
</dependency> |
80 |
|
81 |
<!-- Jackson --> |
82 |
<dependency> |
83 |
<groupId>org.codehaus.jackson</groupId> |
84 |
<artifactId>jackson-mapper-asl</artifactId> |
85 |
<version>${jackson.version}</version> |
86 |
<scope>provided</scope> |
87 |
</dependency> |
88 |
|
89 |
<dependency> |
90 |
<groupId>org.onehippo.cms7</groupId> |
91 |
<artifactId>hippo-addon-hst-configuration-editor-frontend</artifactId> |
92 |
<version>${hippo.addon-hst-configuration-editor.version}</version> |
93 |
</dependency> |
94 |
<dependency> |
95 |
<groupId>org.onehippo.cms7</groupId> |
96 |
<artifactId>hippo-addon-hst-configuration-editor-repository</artifactId> |
97 |
<version>${hippo.addon-hst-configuration-editor.version}</version> |
98 |
</dependency> |
99 |
<dependency> |
100 |
<groupId>org.onehippo.cms7</groupId> |
101 |
<artifactId>hippo-cms-api</artifactId> |
102 |
<version>${hippo.cms.version}</version> |
103 |
</dependency> |
104 |
|
105 |
<!-- Test dependencies --> |
106 |
<dependency> |
107 |
<groupId>junit</groupId> |
108 |
<artifactId>junit</artifactId> |
109 |
<version>${junit.version}</version> |
110 |
<scope>test</scope> |
111 |
</dependency> |
112 |
<dependency> |
113 |
<groupId>org.easymock</groupId> |
114 |
<artifactId>easymock</artifactId> |
115 |
<version>${easymock.version}</version> |
116 |
<scope>test</scope> |
117 |
</dependency> |
118 |
</dependencies> |
119 |
</dependencyManagement> |
120 |
|
121 |
<modules> |
122 |
<module>frontend-api</module> |
123 |
<module>frontend</module> |
124 |
<module>repository</module> |
125 |
<module>test</module> |
126 |
</modules> |
127 |
|
128 |
<scm> |
129 |
<connection>scm:svn:http://svn.onehippo.org/repos/hippo/hippo-cms7/addons/addon-channel-manager/branches/channel-manager-restyling-2.27.xx</connection> |
130 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/addons/addon-channel-manager/branches/channel-manager-restyling-2.27.xx</developerConnection> |
131 |
<url>http://svn.onehippo.org/repos/hippo/hippo-cms7/addons/addon-channel-manager/branches/channel-manager-restyling-2.27.xx</url> |
132 |
</scm> |
133 |
|
134 |
<build> |
135 |
<pluginManagement> |
136 |
<plugins> |
137 |
<plugin> |
138 |
<groupId>org.codehaus.mojo</groupId> |
139 |
<artifactId>jslint-maven-plugin</artifactId> |
140 |
<version>${jslint.plugin.version}</version> |
141 |
<executions> |
142 |
<execution> |
143 |
<goals> |
144 |
<goal>jslint</goal> |
145 |
</goals> |
146 |
</execution> |
147 |
</executions> |
148 |
</plugin> |
149 |
<plugin> |
150 |
<groupId>net.alchim31.maven</groupId> |
151 |
<artifactId>yuicompressor-maven-plugin</artifactId> |
152 |
<version>${yuicompressor.plugin.version}</version> |
153 |
<executions> |
154 |
<execution> |
155 |
<goals> |
156 |
<goal>compress</goal> |
157 |
</goals> |
158 |
</execution> |
159 |
</executions> |
160 |
<configuration> |
161 |
<excludes> |
162 |
<exclude>**/*.html</exclude> |
163 |
<exclude>**/*.css</exclude> |
164 |
<exclude>**/*.properties</exclude> |
165 |
</excludes> |
166 |
<jswarn>false</jswarn> |
167 |
<nocompress>true</nocompress> |
168 |
<nosuffix>true</nosuffix> |
169 |
<statistics>false</statistics> |
170 |
</configuration> |
171 |
</plugin> |
172 |
</plugins> |
173 |
</pluginManagement> |
174 |
</build> |
175 |
|
176 |
<profiles> |
177 |
<profile> |
178 |
<id>pedantic</id> |
179 |
<build> |
180 |
<plugins> |
181 |
<plugin> |
182 |
<groupId>org.apache.rat</groupId> |
183 |
<artifactId>apache-rat-plugin</artifactId> |
184 |
<inherited>false</inherited> |
185 |
<configuration> |
186 |
<excludes combine.children="append"> |
187 |
<!-- 3rd-party licenses --> |
188 |
<exclude>frontend/src/main/java/org/onehippo/cms7/channelmanager/templatecomposer/plugins/colorfield/*</exclude> |
189 |
<exclude>frontend/src/main/java/org/onehippo/cms7/channelmanager/templatecomposer/plugins/vtabs/*</exclude> |
190 |
<exclude>frontend/src/main/java/org/onehippo/cms7/channelmanager/templatecomposer/deviceskins/devices/device-skins.txt</exclude> |
191 |
|
192 |
<!-- ignore frontend dependencies pulled in by npm --> |
193 |
<exclude>frontend/node_modules/**/*</exclude> |
194 |
|
195 |
<!-- files without license header --> |
196 |
<exclude>frontend/.bowerrc</exclude> |
197 |
<exclude>frontend/.jshintrc</exclude> |
198 |
|
199 |
<!-- repository content XML --> |
200 |
<exclude>repository/src/main/resources/**/*.xml</exclude> |
201 |
</excludes> |
202 |
</configuration> |
203 |
</plugin> |
204 |
</plugins> |
205 |
</build> |
206 |
</profile> |
207 |
</profiles> |
208 |
|
209 |
</project> |