1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2007-2011 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" 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-addon-faceteddate</artifactId> |
23 |
<version>2.23.03-SNAPSHOT</version> |
24 |
</parent> |
25 |
|
26 |
<name>Faceted Date addon repository</name> |
27 |
<description>Hippo Faceted Date addon repository</description> |
28 |
<artifactId>hippo-addon-faceteddate-repository</artifactId> |
29 |
<packaging>jar</packaging> |
30 |
|
31 |
<dependencies> |
32 |
<dependency> |
33 |
<groupId>org.onehippo.cms7</groupId> |
34 |
<artifactId>hippo-repository-api</artifactId> |
35 |
<version>${hippo.repository.version}</version> |
36 |
<scope>provided</scope> |
37 |
</dependency> |
38 |
|
39 |
<dependency> |
40 |
<groupId>junit</groupId> |
41 |
<artifactId>junit</artifactId> |
42 |
<version>${junit.version}</version> |
43 |
<scope>test</scope> |
44 |
</dependency> |
45 |
<dependency> |
46 |
<groupId>org.onehippo.cms7</groupId> |
47 |
<artifactId>hippo-repository-engine</artifactId> |
48 |
<version>${hippo.repository.version}</version> |
49 |
<scope>test</scope> |
50 |
</dependency> |
51 |
<dependency> |
52 |
<groupId>org.onehippo.cms7</groupId> |
53 |
<artifactId>hippo-repository-modules</artifactId> |
54 |
<version>${hippo.repository.version}</version> |
55 |
<scope>test</scope> |
56 |
</dependency> |
57 |
<dependency> |
58 |
<groupId>org.onehippo.cms7</groupId> |
59 |
<artifactId>hippo-repository-config</artifactId> |
60 |
<version>${hippo.repository.version}</version> |
61 |
<scope>test</scope> |
62 |
</dependency> |
63 |
<dependency> |
64 |
<groupId>org.onehippo.cms7</groupId> |
65 |
<artifactId>hippo-cms-engine</artifactId> |
66 |
<version>${hippo.cms.version}</version> |
67 |
<scope>test</scope> |
68 |
</dependency> |
69 |
|
70 |
<!-- Testing needs a JTA implementation --> |
71 |
<dependency> |
72 |
<groupId>com.atomikos</groupId> |
73 |
<artifactId>transactions-api</artifactId> |
74 |
<version>${atomikos.version}</version> |
75 |
<scope>test</scope> |
76 |
</dependency> |
77 |
<dependency> |
78 |
<groupId>com.atomikos</groupId> |
79 |
<artifactId>transactions</artifactId> |
80 |
<version>${atomikos.version}</version> |
81 |
<scope>test</scope> |
82 |
</dependency> |
83 |
<dependency> |
84 |
<groupId>com.atomikos</groupId> |
85 |
<artifactId>transactions-jta</artifactId> |
86 |
<version>${atomikos.version}</version> |
87 |
<scope>test</scope> |
88 |
</dependency> |
89 |
<dependency> |
90 |
<groupId>com.atomikos</groupId> |
91 |
<artifactId>atomikos-util</artifactId> |
92 |
<version>${atomikos.version}</version> |
93 |
<scope>test</scope> |
94 |
</dependency> |
95 |
</dependencies> |
96 |
|
97 |
<build> |
98 |
<defaultGoal>package</defaultGoal> |
99 |
<plugins> |
100 |
<plugin> |
101 |
<groupId>org.apache.maven.plugins</groupId> |
102 |
<artifactId>maven-surefire-plugin</artifactId> |
103 |
<configuration> |
104 |
<forkMode>always</forkMode> |
105 |
<workingDirectory>${project.build.directory}</workingDirectory> |
106 |
<systemProperties> |
107 |
<property> |
108 |
<name>history.points</name> |
109 |
<value>${history.points}</value> |
110 |
</property> |
111 |
</systemProperties> |
112 |
</configuration> |
113 |
</plugin> |
114 |
</plugins> |
115 |
</build> |
116 |
|
117 |
<profiles> |
118 |
<profile> |
119 |
<id>tests</id> |
120 |
<activation> |
121 |
<activeByDefault>true</activeByDefault> |
122 |
</activation> |
123 |
<dependencies> |
124 |
<dependency> |
125 |
<groupId>org.onehippo.cms7</groupId> |
126 |
<artifactId>hippo-repository-engine</artifactId> |
127 |
<version>${hippo.repository.version}</version> |
128 |
<type>jar</type> |
129 |
<classifier>tests</classifier> |
130 |
<scope>test</scope> |
131 |
<optional>true</optional> |
132 |
</dependency> |
133 |
</dependencies> |
134 |
</profile> |
135 |
<profile> |
136 |
<id>skip-tests</id> |
137 |
<activation> |
138 |
<property> |
139 |
<name>maven.test.skip</name> |
140 |
<value>true</value> |
141 |
</property> |
142 |
</activation> |
143 |
<dependencyManagement> |
144 |
<dependencies> |
145 |
<dependency> |
146 |
<groupId>org.onehippo.cms7</groupId> |
147 |
<artifactId>hippo-repository-engine</artifactId> |
148 |
<version>${hippo.repository.version}</version> |
149 |
<type>jar</type> |
150 |
<classifier>tests</classifier> |
151 |
<scope>test</scope> |
152 |
<optional>true</optional> |
153 |
</dependency> |
154 |
</dependencies> |
155 |
</dependencyManagement> |
156 |
</profile> |
157 |
</profiles> |
158 |
|
159 |
</project> |