1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2007-2013 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/maven-v4_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>24.1-iteration-4</version> |
24 |
</parent> |
25 |
|
26 |
<name>Hippo Product Packages</name> |
27 |
<description>Hippo Product Packages</description> |
28 |
<artifactId>hippo-packages</artifactId> |
29 |
<version>2.25.02-SNAPSHOT</version> |
30 |
<packaging>pom</packaging> |
31 |
<inceptionYear>2008</inceptionYear> |
32 |
|
33 |
<scm> |
34 |
<connection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/packages/trunk/</connection> |
35 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/packages/trunk/</developerConnection> |
36 |
<url>https://svn.onehippo.org/repos/hippo/hippo-cms7/packages/trunk/</url> |
37 |
</scm> |
38 |
|
39 |
<properties> |
40 |
<!-- use root project name for all project modules NOTICE files, should be the same as in the root NOTICE file --> |
41 |
<notice.project.name>Hippo CMS7 Product Packages</notice.project.name> |
42 |
|
43 |
<hippo.utilities.version>1.02.01-iteration-4</hippo.utilities.version> |
44 |
<hippo.repository.version>2.25.05-iteration-4</hippo.repository.version> |
45 |
<hippo.cms.version>2.25.04-iteration-4</hippo.cms.version> |
46 |
<hippo.hst.version>2.27.03-iteration-4</hippo.hst.version> |
47 |
|
48 |
<commons-lang.version>2.4</commons-lang.version> |
49 |
|
50 |
<junit.version>4.4</junit.version> |
51 |
<selenium.version>0.9.2</selenium.version> |
52 |
<atomikos.version>3.1.4</atomikos.version> |
53 |
|
54 |
<easymock.version>2.4</easymock.version> |
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 |
<modules> |
72 |
<module>package-app-dependencies</module> |
73 |
<module>package-cms-dependencies</module> |
74 |
</modules> |
75 |
|
76 |
<profiles> |
77 |
<profile> |
78 |
<id>pedantic</id> |
79 |
<build> |
80 |
<plugins> |
81 |
<plugin> |
82 |
<groupId>org.apache.rat</groupId> |
83 |
<artifactId>apache-rat-plugin</artifactId> |
84 |
<inherited>false</inherited> |
85 |
</plugin> |
86 |
</plugins> |
87 |
</build> |
88 |
</profile> |
89 |
</profiles> |
90 |
|
91 |
</project> |