cdmlib / cdmlib-model / pom.xml @ 795ee1e1
History | View | Annotate | Download (7.17 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>5.5.1-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 |
|
13 |
<build>
|
14 |
<plugins>
|
15 |
<plugin>
|
16 |
<groupId>org.apache.maven.plugins</groupId> |
17 |
<artifactId>maven-antrun-plugin</artifactId> |
18 |
<executions>
|
19 |
<execution>
|
20 |
<id>aspectj-main</id> |
21 |
<phase>process-sources</phase> |
22 |
<goals>
|
23 |
<goal>run</goal> |
24 |
</goals>
|
25 |
<configuration>
|
26 |
<tasks>
|
27 |
<property name="spring.aspects.jar" value="${settings.localRepository}/org/springframework/spring-aspects/${spring.version}/spring-aspects-${spring.version}.jar" /> |
28 |
<path id="aspectPath"> |
29 |
<pathelement location="${spring.aspects.jar}" /> |
30 |
</path>
|
31 |
<taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc"> |
32 |
<classpath refid="maven.plugin.classpath" /> |
33 |
</taskdef>
|
34 |
<iajc verbose="false" source="${java.codelevel}" destDir="target/classes" aspectPathRef="aspectPath"> |
35 |
<classpath refid="maven.plugin.classpath" /> |
36 |
<classpath refid="maven.compile.classpath" /> |
37 |
<sourceroots>
|
38 |
<pathelement location="src/main/java" /> |
39 |
</sourceroots>
|
40 |
</iajc>
|
41 |
</tasks>
|
42 |
</configuration>
|
43 |
</execution>
|
44 |
<execution>
|
45 |
<id>aspectj-test</id> |
46 |
<phase>process-test-sources</phase> |
47 |
<goals>
|
48 |
<goal>run</goal> |
49 |
</goals>
|
50 |
<configuration>
|
51 |
<tasks>
|
52 |
<taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc"> |
53 |
<classpath refid="maven.plugin.classpath" /> |
54 |
</taskdef>
|
55 |
<iajc verbose="false" source="${java.codelevel}" destDir="target/test-classes"> |
56 |
<classpath refid="maven.plugin.classpath" /> |
57 |
<classpath refid="maven.compile.classpath" /> |
58 |
<classpath refid="maven.test.classpath" /> |
59 |
<sourceroots>
|
60 |
<pathelement location="src/test/java" /> |
61 |
</sourceroots>
|
62 |
</iajc>
|
63 |
</tasks>
|
64 |
</configuration>
|
65 |
</execution>
|
66 |
</executions>
|
67 |
<dependencies>
|
68 |
<dependency>
|
69 |
<groupId>org.aspectj</groupId> |
70 |
<artifactId>aspectjtools</artifactId> |
71 |
<version>1.8.8</version> |
72 |
</dependency>
|
73 |
<dependency>
|
74 |
<groupId>org.aspectj</groupId> |
75 |
<artifactId>aspectjrt</artifactId> |
76 |
<version>1.8.8</version> |
77 |
</dependency>
|
78 |
</dependencies>
|
79 |
</plugin>
|
80 |
</plugins>
|
81 |
</build>
|
82 |
<dependencies>
|
83 |
<dependency>
|
84 |
<groupId>eu.etaxonomy</groupId> |
85 |
<artifactId>cdmlib-commons</artifactId> |
86 |
</dependency>
|
87 |
<dependency>
|
88 |
<groupId>javax.xml.bind</groupId> |
89 |
<artifactId>jaxb-api</artifactId> |
90 |
</dependency>
|
91 |
<dependency>
|
92 |
<groupId>xml-resolver</groupId> |
93 |
<artifactId>xml-resolver</artifactId> |
94 |
</dependency>
|
95 |
<dependency>
|
96 |
<groupId>javax.activation</groupId> |
97 |
<artifactId>activation</artifactId> |
98 |
</dependency>
|
99 |
<dependency>
|
100 |
<groupId>org.glassfish.jaxb</groupId> |
101 |
<artifactId>jaxb-runtime</artifactId> |
102 |
</dependency>
|
103 |
<dependency>
|
104 |
<groupId>org.glassfish.jaxb</groupId> |
105 |
<artifactId>jaxb-jxc</artifactId> |
106 |
<version>${jaxb.version}</version> |
107 |
</dependency>
|
108 |
<dependency>
|
109 |
<groupId>org.aspectj</groupId> |
110 |
<artifactId>aspectjrt</artifactId> |
111 |
</dependency>
|
112 |
<dependency>
|
113 |
<groupId>org.hibernate</groupId> |
114 |
<artifactId>hibernate-envers</artifactId> |
115 |
</dependency>
|
116 |
<dependency>
|
117 |
<groupId>org.hibernate</groupId> |
118 |
<artifactId>hibernate-search-engine</artifactId> |
119 |
</dependency>
|
120 |
<dependency>
|
121 |
<groupId>org.apache.lucene</groupId> |
122 |
<artifactId>lucene-core</artifactId> |
123 |
</dependency>
|
124 |
<!-- for KeywordAnalyzer in NonViralName -->
|
125 |
<dependency>
|
126 |
<groupId>org.apache.lucene</groupId> |
127 |
<artifactId>lucene-analyzers-common</artifactId> |
128 |
</dependency>
|
129 |
<dependency>
|
130 |
<groupId>org.springframework</groupId> |
131 |
<artifactId>spring-jdbc</artifactId> |
132 |
</dependency>
|
133 |
<!-- //TODO is this required here? -->
|
134 |
<dependency>
|
135 |
<groupId>org.springframework</groupId> |
136 |
<artifactId>spring-context</artifactId> |
137 |
</dependency>
|
138 |
<dependency>
|
139 |
<groupId>org.springframework</groupId> |
140 |
<artifactId>spring-aspects</artifactId> |
141 |
</dependency>
|
142 |
<dependency>
|
143 |
<groupId>net.sf.opencsv</groupId> |
144 |
<artifactId>opencsv</artifactId> |
145 |
</dependency>
|
146 |
<dependency>
|
147 |
<groupId>org.apache.poi</groupId> |
148 |
<artifactId>poi</artifactId> |
149 |
</dependency>
|
150 |
<dependency>
|
151 |
<groupId>commons-lang</groupId> |
152 |
<artifactId>commons-lang</artifactId> |
153 |
</dependency>
|
154 |
<dependency>
|
155 |
<groupId>joda-time</groupId> |
156 |
<artifactId>joda-time</artifactId> |
157 |
</dependency>
|
158 |
<dependency>
|
159 |
<groupId>org.jadira.usertype</groupId> |
160 |
<artifactId>usertype.jodatime</artifactId> |
161 |
</dependency>
|
162 |
<dependency>
|
163 |
<groupId>org.springframework.security</groupId> |
164 |
<artifactId>spring-security-core</artifactId> |
165 |
</dependency>
|
166 |
<dependency>
|
167 |
<groupId>com.ibm.lsid</groupId> |
168 |
<artifactId>lsid-client</artifactId> |
169 |
</dependency>
|
170 |
<dependency>
|
171 |
<groupId>wsdl4j</groupId> |
172 |
<artifactId>wsdl4j</artifactId> |
173 |
</dependency>
|
174 |
<!-- hibernate validator -->
|
175 |
<dependency>
|
176 |
<groupId>javax.validation</groupId> |
177 |
<artifactId>validation-api</artifactId> |
178 |
</dependency>
|
179 |
<dependency>
|
180 |
<groupId>org.hibernate</groupId> |
181 |
<artifactId>hibernate-validator</artifactId> |
182 |
</dependency>
|
183 |
<!-- these 3 are also required for hibernate validator according to http://hibernate.org/validator/documentation/getting-started/-->
|
184 |
<dependency>
|
185 |
<groupId>javax.el</groupId> |
186 |
<artifactId>javax.el-api</artifactId> |
187 |
</dependency>
|
188 |
<dependency>
|
189 |
<groupId>org.glassfish.web</groupId> |
190 |
<artifactId>javax.el</artifactId> |
191 |
</dependency>
|
192 |
<dependency>
|
193 |
<groupId>org.hibernate</groupId> |
194 |
<artifactId>hibernate-validator-cdi</artifactId> |
195 |
</dependency>
|
196 |
<!-- end validator -->
|
197 |
<dependency>
|
198 |
<groupId>org.slf4j</groupId> |
199 |
<artifactId>slf4j-log4j12</artifactId> |
200 |
</dependency>
|
201 |
<dependency>
|
202 |
<groupId>net.sf.ehcache</groupId> |
203 |
<artifactId>ehcache-core</artifactId> |
204 |
</dependency>
|
205 |
<dependency>
|
206 |
<groupId>com.fasterxml.jackson.core</groupId> |
207 |
<artifactId>jackson-annotations</artifactId> |
208 |
</dependency>
|
209 |
</dependencies>
|
210 |
</project>
|