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>4.0.0-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.7.4</version>
|
75
|
</dependency>
|
76
|
<dependency>
|
77
|
<groupId>org.aspectj</groupId>
|
78
|
<artifactId>aspectjrt</artifactId>
|
79
|
<version>1.7.4</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>org.glassfish.jaxb</groupId>
|
104
|
<artifactId>jaxb-runtime</artifactId>
|
105
|
</dependency>
|
106
|
<dependency>
|
107
|
<groupId>org.glassfish.jaxb</groupId>
|
108
|
<artifactId>jaxb-jxc</artifactId>
|
109
|
<version>${jaxb.version}</version>
|
110
|
</dependency>
|
111
|
<dependency>
|
112
|
<groupId>org.aspectj</groupId>
|
113
|
<artifactId>aspectjrt</artifactId>
|
114
|
</dependency>
|
115
|
<dependency>
|
116
|
<groupId>org.hibernate</groupId>
|
117
|
<artifactId>hibernate-envers</artifactId>
|
118
|
</dependency>
|
119
|
<dependency>
|
120
|
<groupId>org.hibernate</groupId>
|
121
|
<artifactId>hibernate-search-engine</artifactId>
|
122
|
</dependency>
|
123
|
<dependency>
|
124
|
<groupId>org.apache.lucene</groupId>
|
125
|
<artifactId>lucene-core</artifactId>
|
126
|
</dependency>
|
127
|
<!-- for KeywordAnalyzer in NonViralName -->
|
128
|
<dependency>
|
129
|
<groupId>org.apache.lucene</groupId>
|
130
|
<artifactId>lucene-analyzers-common</artifactId>
|
131
|
</dependency>
|
132
|
<dependency>
|
133
|
<groupId>org.springframework</groupId>
|
134
|
<artifactId>spring-jdbc</artifactId>
|
135
|
</dependency>
|
136
|
<!-- //TODO is this required here? -->
|
137
|
<dependency>
|
138
|
<groupId>org.springframework</groupId>
|
139
|
<artifactId>spring-context</artifactId>
|
140
|
</dependency>
|
141
|
<dependency>
|
142
|
<groupId>org.springframework</groupId>
|
143
|
<artifactId>spring-aspects</artifactId>
|
144
|
</dependency>
|
145
|
<dependency>
|
146
|
<groupId>net.sf.opencsv</groupId>
|
147
|
<artifactId>opencsv</artifactId>
|
148
|
</dependency>
|
149
|
<dependency>
|
150
|
<groupId>org.apache.poi</groupId>
|
151
|
<artifactId>poi</artifactId>
|
152
|
</dependency>
|
153
|
<dependency>
|
154
|
<groupId>commons-lang</groupId>
|
155
|
<artifactId>commons-lang</artifactId>
|
156
|
</dependency>
|
157
|
<dependency>
|
158
|
<groupId>joda-time</groupId>
|
159
|
<artifactId>joda-time</artifactId>
|
160
|
</dependency>
|
161
|
<dependency>
|
162
|
<groupId>org.jadira.usertype</groupId>
|
163
|
<artifactId>usertype.jodatime</artifactId>
|
164
|
</dependency>
|
165
|
<dependency>
|
166
|
<groupId>org.springframework.security</groupId>
|
167
|
<artifactId>spring-security-core</artifactId>
|
168
|
</dependency>
|
169
|
<dependency>
|
170
|
<groupId>com.ibm.lsid</groupId>
|
171
|
<artifactId>lsid-client</artifactId>
|
172
|
</dependency>
|
173
|
<dependency>
|
174
|
<groupId>wsdl4j</groupId>
|
175
|
<artifactId>wsdl4j</artifactId>
|
176
|
</dependency>
|
177
|
<!-- hibernate validator -->
|
178
|
<dependency>
|
179
|
<groupId>javax.validation</groupId>
|
180
|
<artifactId>validation-api</artifactId>
|
181
|
</dependency>
|
182
|
<dependency>
|
183
|
<groupId>org.hibernate</groupId>
|
184
|
<artifactId>hibernate-validator</artifactId>
|
185
|
</dependency>
|
186
|
<!-- these 3 are also required for hibernate validator according to http://hibernate.org/validator/documentation/getting-started/-->
|
187
|
<dependency>
|
188
|
<groupId>javax.el</groupId>
|
189
|
<artifactId>javax.el-api</artifactId>
|
190
|
</dependency>
|
191
|
<dependency>
|
192
|
<groupId>org.glassfish.web</groupId>
|
193
|
<artifactId>javax.el</artifactId>
|
194
|
</dependency>
|
195
|
<dependency>
|
196
|
<groupId>org.hibernate</groupId>
|
197
|
<artifactId>hibernate-validator-cdi</artifactId>
|
198
|
</dependency>
|
199
|
<!-- end validator -->
|
200
|
<dependency>
|
201
|
<groupId>org.slf4j</groupId>
|
202
|
<artifactId>slf4j-log4j12</artifactId>
|
203
|
</dependency>
|
204
|
<dependency>
|
205
|
<groupId>net.sf.ehcache</groupId>
|
206
|
<artifactId>ehcache-core</artifactId>
|
207
|
</dependency>
|
208
|
<dependency>
|
209
|
<groupId>com.fasterxml.jackson.core</groupId>
|
210
|
<artifactId>jackson-annotations</artifactId>
|
211
|
</dependency>
|
212
|
</dependencies>
|
213
|
</project>
|