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.21.01-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.slf4j</groupId> |
47 |
<artifactId>slf4j-log4j12</artifactId> |
48 |
<scope>test</scope> |
49 |
<version>${slf4j.version}</version> |
50 |
</dependency> |
51 |
|
52 |
<dependency> |
53 |
<groupId>org.onehippo.cms7</groupId> |
54 |
<artifactId>hippo-repository-engine</artifactId> |
55 |
<version>${hippo.repository.version}</version> |
56 |
<scope>test</scope> |
57 |
</dependency> |
58 |
<dependency> |
59 |
<groupId>org.onehippo.cms7</groupId> |
60 |
<artifactId>hippo-repository-modules</artifactId> |
61 |
<version>${hippo.repository.version}</version> |
62 |
<scope>test</scope> |
63 |
</dependency> |
64 |
<dependency> |
65 |
<groupId>org.onehippo.cms7</groupId> |
66 |
<artifactId>hippo-repository-config</artifactId> |
67 |
<version>${hippo.repository.version}</version> |
68 |
<scope>test</scope> |
69 |
</dependency> |
70 |
<dependency> |
71 |
<groupId>org.onehippo.cms7</groupId> |
72 |
<artifactId>hippo-cms-engine</artifactId> |
73 |
<version>${hippo.cms.version}</version> |
74 |
<scope>test</scope> |
75 |
</dependency> |
76 |
|
77 |
<!-- Testing needs a JTA implementation --> |
78 |
<dependency> |
79 |
<groupId>com.atomikos</groupId> |
80 |
<artifactId>transactions-api</artifactId> |
81 |
<version>${atomikos.version}</version> |
82 |
<scope>test</scope> |
83 |
</dependency> |
84 |
<dependency> |
85 |
<groupId>com.atomikos</groupId> |
86 |
<artifactId>transactions</artifactId> |
87 |
<version>${atomikos.version}</version> |
88 |
<scope>test</scope> |
89 |
</dependency> |
90 |
<dependency> |
91 |
<groupId>com.atomikos</groupId> |
92 |
<artifactId>transactions-jta</artifactId> |
93 |
<version>${atomikos.version}</version> |
94 |
<scope>test</scope> |
95 |
</dependency> |
96 |
<dependency> |
97 |
<groupId>com.atomikos</groupId> |
98 |
<artifactId>atomikos-util</artifactId> |
99 |
<version>${atomikos.version}</version> |
100 |
<scope>test</scope> |
101 |
</dependency> |
102 |
</dependencies> |
103 |
|
104 |
<build> |
105 |
<defaultGoal>package</defaultGoal> |
106 |
<plugins> |
107 |
<plugin> |
108 |
<groupId>org.apache.maven.plugins</groupId> |
109 |
<artifactId>maven-surefire-plugin</artifactId> |
110 |
<configuration> |
111 |
<forkMode>always</forkMode> |
112 |
<workingDirectory>${project.build.directory}</workingDirectory> |
113 |
<systemProperties> |
114 |
<property> |
115 |
<name>history.points</name> |
116 |
<value>${history.points}</value> |
117 |
</property> |
118 |
</systemProperties> |
119 |
</configuration> |
120 |
</plugin> |
121 |
</plugins> |
122 |
</build> |
123 |
|
124 |
<profiles> |
125 |
<profile> |
126 |
<id>tests</id> |
127 |
<activation> |
128 |
<activeByDefault>true</activeByDefault> |
129 |
</activation> |
130 |
<dependencies> |
131 |
<dependency> |
132 |
<groupId>org.onehippo.cms7</groupId> |
133 |
<artifactId>hippo-repository-engine</artifactId> |
134 |
<version>${hippo.repository.version}</version> |
135 |
<type>jar</type> |
136 |
<classifier>tests</classifier> |
137 |
<scope>test</scope> |
138 |
<optional>true</optional> |
139 |
</dependency> |
140 |
</dependencies> |
141 |
</profile> |
142 |
<profile> |
143 |
<id>skip-tests</id> |
144 |
<activation> |
145 |
<property> |
146 |
<name>maven.test.skip</name> |
147 |
<value>true</value> |
148 |
</property> |
149 |
</activation> |
150 |
<dependencyManagement> |
151 |
<dependencies> |
152 |
<dependency> |
153 |
<groupId>org.onehippo.cms7</groupId> |
154 |
<artifactId>hippo-repository-engine</artifactId> |
155 |
<version>${hippo.repository.version}</version> |
156 |
<type>jar</type> |
157 |
<classifier>tests</classifier> |
158 |
<scope>test</scope> |
159 |
<optional>true</optional> |
160 |
</dependency> |
161 |
</dependencies> |
162 |
</dependencyManagement> |
163 |
</profile> |
164 |
</profiles> |
165 |
|
166 |
</project> |