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