version 2.2
[cdmlib.git] / cdmlib-model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?><project>
2 <parent>
3 <artifactId>cdmlib-parent</artifactId>
4 <groupId>eu.etaxonomy</groupId>
5 <version>2.2</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <artifactId>cdmlib-model</artifactId>
9 <name>CDM Domain Model</name>
10 <description>The domain model java implementation of EDIT's Common Data Model</description>
11 <scm>
12 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</connection>
13 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</developerConnection>
14 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-model/</url>
15 </scm>
16 <build>
17 <plugins>
18 <plugin>
19 <artifactId>maven-antrun-plugin</artifactId>
20 <executions>
21
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/spring-aspects/2.5.6/spring-aspects-2.5.6.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="1.5" destDir="target/classes"
38 aspectPathRef="aspectPath">
39 <classpath refid="maven.plugin.classpath" />
40 <classpath refid="maven.compile.classpath" />
41 <sourceroots>
42 <pathelement location="src/main/java" />
43 </sourceroots>
44 </iajc>
45 </tasks>
46 </configuration>
47 </execution>
48 <execution>
49 <id>aspectj-test</id>
50 <phase>process-test-sources</phase>
51 <goals>
52 <goal>run</goal>
53 </goals>
54 <configuration>
55 <tasks>
56 <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc">
57 <classpath refid="maven.plugin.classpath" />
58 </taskdef>
59 <iajc verbose="false" source="1.5" destDir="target/test-classes">
60 <classpath refid="maven.plugin.classpath" />
61 <classpath refid="maven.compile.classpath" />
62 <classpath refid="maven.test.classpath" />
63 <sourceroots>
64 <pathelement location="src/test/java" />
65 </sourceroots>
66 </iajc>
67 </tasks>
68 </configuration>
69 </execution>
70 </executions>
71 <dependencies>
72 <dependency>
73 <groupId>org.aspectj</groupId>
74 <artifactId>aspectjtools</artifactId>
75 <version>1.6.3</version>
76 </dependency>
77 <dependency>
78 <groupId>org.aspectj</groupId>
79 <artifactId>aspectjrt</artifactId>
80 <version>1.6.3</version>
81 </dependency>
82 </dependencies>
83 </plugin>
84 </plugins>
85 </build>
86 <dependencies>
87 <dependency>
88 <groupId>eu.etaxonomy</groupId>
89 <artifactId>cdmlib-commons</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>javax.xml.bind</groupId>
93 <artifactId>jaxb-api</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>xml-resolver</groupId>
97 <artifactId>xml-resolver</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>javax.activation</groupId>
101 <artifactId>activation</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>javax.xml.bind</groupId>
105 <artifactId>jsr173_api</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>com.sun.xml.bind</groupId>
109 <artifactId>jaxb-impl</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>com.sun.xml.bind</groupId>
113 <artifactId>jaxb1-impl</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>com.sun.xml.bind</groupId>
117 <artifactId>jaxb-xjc</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>org.aspectj</groupId>
121 <artifactId>aspectjrt</artifactId>
122 </dependency>
123 <dependency>
124 <groupId>org.hibernate</groupId>
125 <artifactId>hibernate-annotations</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>org.hibernate</groupId>
129 <artifactId>hibernate-envers</artifactId>
130 </dependency>
131 <dependency>
132 <groupId>org.hibernate</groupId>
133 <artifactId>hibernate-search</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.unitils</groupId>
137 <artifactId>unitils</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>org.springframework</groupId>
141 <artifactId>spring-jdbc</artifactId>
142 </dependency>
143 <dependency>
144 <groupId>org.springframework</groupId>
145 <artifactId>spring-test</artifactId>
146 </dependency>
147 <dependency>
148 <groupId>org.springframework</groupId>
149 <artifactId>spring-aspects</artifactId>
150 </dependency>
151 <dependency>
152 <groupId>net.sf.opencsv</groupId>
153 <artifactId>opencsv</artifactId>
154 </dependency>
155 <dependency>
156 <groupId>org.apache.poi</groupId>
157 <artifactId>poi</artifactId>
158 </dependency>
159 <dependency>
160 <groupId>joda-time</groupId>
161 <artifactId>joda-time</artifactId>
162 </dependency>
163 <dependency>
164 <groupId>joda-time</groupId>
165 <artifactId>joda-time-hibernate</artifactId>
166 <exclusions>
167 <exclusion>
168 <artifactId>ehcache</artifactId>
169 <groupId>ehcache</groupId>
170 </exclusion>
171 <exclusion>
172 <artifactId>cglib-full</artifactId>
173 <groupId>cglib</groupId>
174 </exclusion>
175 <exclusion>
176 <artifactId>hibernate</artifactId>
177 <groupId>org.hibernate</groupId>
178 </exclusion>
179 <exclusion>
180 <artifactId>hibernate</artifactId>
181 <groupId>hibernate</groupId>
182 </exclusion>
183 </exclusions>
184 </dependency>
185 <dependency>
186 <groupId>org.springframework.security</groupId>
187 <artifactId>spring-security-core</artifactId>
188 </dependency>
189 <dependency>
190 <groupId>com.ibm.lsid</groupId>
191 <artifactId>lsid-client</artifactId>
192 </dependency>
193 <dependency>
194 <groupId>wsdl4j</groupId>
195 <artifactId>wsdl4j</artifactId>
196 </dependency>
197 <dependency>
198 <groupId>javax.xml.bind</groupId>
199 <artifactId>jaxb-api</artifactId>
200 <version>2.1</version>
201 </dependency>
202 </dependencies>
203 </project>