small change in TimePeriod parsing
[cdmlib.git] / cdmlib-model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <parent>
5 <artifactId>cdmlib-parent</artifactId>
6 <groupId>eu.etaxonomy</groupId>
7 <version>2.4</version>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>cdmlib-model</artifactId>
11 <name>CDM Domain Model</name>
12 <description>The domain model java implementation of EDIT's Common Data Model</description>
13 <scm>
14 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</connection>
15 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</developerConnection>
16 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-model/</url>
17 </scm>
18 <build>
19 <plugins>
20 <plugin>
21 <artifactId>maven-antrun-plugin</artifactId>
22 <executions>
23
24 <execution>
25 <id>aspectj-main</id>
26 <phase>process-sources</phase>
27 <goals>
28 <goal>run</goal>
29 </goals>
30 <configuration>
31 <tasks>
32 <property name="spring.aspects.jar" value="${settings.localRepository}/org/springframework/org.springframework.aspects/${spring.version}/org.springframework.aspects-${spring.version}.jar"/>
33 <path id="aspectPath">
34 <pathelement location="${spring.aspects.jar}"/>
35 </path>
36 <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc">
37 <classpath refid="maven.plugin.classpath" />
38 </taskdef>
39 <iajc verbose="false" source="1.5" destDir="target/classes"
40 aspectPathRef="aspectPath">
41 <classpath refid="maven.plugin.classpath" />
42 <classpath refid="maven.compile.classpath" />
43 <sourceroots>
44 <pathelement location="src/main/java" />
45 </sourceroots>
46 </iajc>
47 </tasks>
48 </configuration>
49 </execution>
50 <execution>
51 <id>aspectj-test</id>
52 <phase>process-test-sources</phase>
53 <goals>
54 <goal>run</goal>
55 </goals>
56 <configuration>
57 <tasks>
58 <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc">
59 <classpath refid="maven.plugin.classpath" />
60 </taskdef>
61 <iajc verbose="false" source="1.5" destDir="target/test-classes">
62 <classpath refid="maven.plugin.classpath" />
63 <classpath refid="maven.compile.classpath" />
64 <classpath refid="maven.test.classpath" />
65 <sourceroots>
66 <pathelement location="src/test/java" />
67 </sourceroots>
68 </iajc>
69 </tasks>
70 </configuration>
71 </execution>
72 </executions>
73 <dependencies>
74 <dependency>
75 <groupId>org.aspectj</groupId>
76 <artifactId>aspectjtools</artifactId>
77 <version>1.6.3</version>
78 </dependency>
79 <dependency>
80 <groupId>org.aspectj</groupId>
81 <artifactId>aspectjrt</artifactId>
82 <version>1.6.3</version>
83 </dependency>
84 </dependencies>
85 </plugin>
86 </plugins>
87 </build>
88 <dependencies>
89 <dependency>
90 <groupId>eu.etaxonomy</groupId>
91 <artifactId>cdmlib-commons</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>javax.xml.bind</groupId>
95 <artifactId>jaxb-api</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>xml-resolver</groupId>
99 <artifactId>xml-resolver</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>javax.activation</groupId>
103 <artifactId>activation</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>javax.xml.bind</groupId>
107 <artifactId>jsr173_api</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>com.sun.xml.bind</groupId>
111 <artifactId>jaxb-impl</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>com.sun.xml.bind</groupId>
115 <artifactId>jaxb1-impl</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>com.sun.xml.bind</groupId>
119 <artifactId>jaxb-xjc</artifactId>
120 </dependency>
121 <dependency>
122 <groupId>org.aspectj</groupId>
123 <artifactId>aspectjrt</artifactId>
124 </dependency>
125 <dependency>
126 <groupId>org.hibernate</groupId>
127 <artifactId>hibernate-annotations</artifactId>
128 </dependency>
129 <dependency>
130 <groupId>org.hibernate</groupId>
131 <artifactId>hibernate-envers</artifactId>
132 </dependency>
133 <dependency>
134 <groupId>org.hibernate</groupId>
135 <artifactId>hibernate-search</artifactId>
136 </dependency>
137 <dependency>
138 <groupId>org.unitils</groupId>
139 <artifactId>unitils</artifactId>
140 </dependency>
141 <dependency>
142 <groupId>commons-lang</groupId>
143 <artifactId>commons-lang</artifactId>
144 </dependency>
145 <dependency>
146 <groupId>org.springframework</groupId>
147 <artifactId>org.springframework.jdbc</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>org.springframework</groupId>
151 <artifactId>org.springframework.test</artifactId>
152 </dependency>
153 <dependency>
154 <groupId>org.springframework</groupId>
155 <artifactId>org.springframework.aspects</artifactId>
156 </dependency>
157 <dependency>
158 <groupId>net.sf.opencsv</groupId>
159 <artifactId>opencsv</artifactId>
160 </dependency>
161 <dependency>
162 <groupId>org.apache.poi</groupId>
163 <artifactId>poi</artifactId>
164 </dependency>
165 <dependency>
166 <groupId>commons-lang</groupId>
167 <artifactId>commons-lang</artifactId>
168 </dependency>
169 <dependency>
170 <groupId>joda-time</groupId>
171 <artifactId>joda-time</artifactId>
172 </dependency>
173 <dependency>
174 <groupId>joda-time</groupId>
175 <artifactId>joda-time-hibernate</artifactId>
176 <exclusions>
177 <exclusion>
178 <artifactId>ehcache</artifactId>
179 <groupId>ehcache</groupId>
180 </exclusion>
181 <exclusion>
182 <artifactId>cglib-full</artifactId>
183 <groupId>cglib</groupId>
184 </exclusion>
185 <exclusion>
186 <artifactId>hibernate</artifactId>
187 <groupId>org.hibernate</groupId>
188 </exclusion>
189 <exclusion>
190 <artifactId>hibernate</artifactId>
191 <groupId>hibernate</groupId>
192 </exclusion>
193 </exclusions>
194 </dependency>
195 <dependency>
196 <groupId>org.springframework.security</groupId>
197 <artifactId>spring-security-core</artifactId>
198 </dependency>
199 <dependency>
200 <groupId>com.ibm.lsid</groupId>
201 <artifactId>lsid-client</artifactId>
202 </dependency>
203 <dependency>
204 <groupId>wsdl4j</groupId>
205 <artifactId>wsdl4j</artifactId>
206 </dependency>
207 <dependency>
208 <groupId>javax.xml.bind</groupId>
209 <artifactId>jaxb-api</artifactId>
210 <version>2.1</version>
211 </dependency>
212 <dependency>
213 <groupId>jdom</groupId>
214 <artifactId>jdom</artifactId>
215 </dependency>
216 <dependency>
217 <groupId>javax.validation</groupId>
218 <artifactId>validation-api</artifactId>
219 </dependency>
220 <dependency>
221 <groupId>org.hibernate</groupId>
222 <artifactId>hibernate-validator</artifactId>
223 </dependency>
224 <dependency>
225 <groupId>org.slf4j</groupId>
226 <artifactId>slf4j-log4j12</artifactId>
227 </dependency>
228 <dependency>
229 <groupId>jdom</groupId>
230 <artifactId>jdom</artifactId>
231 </dependency>
232 </dependencies>
233 </project>