| 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.0.11-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 | |
|---|
| 23 | <execution> |
|---|
| 24 | <id>aspectj-main</id> |
|---|
| 25 | <phase>process-sources</phase> |
|---|
| 26 | <goals> |
|---|
| 27 | <goal>run</goal> |
|---|
| 28 | </goals> |
|---|
| 29 | <configuration> |
|---|
| 30 | <tasks> |
|---|
| 31 | <property name="spring.aspects.jar" value="${settings.localRepository}/org/springframework/org.springframework.aspects/${spring.version}/org.springframework.aspects-${spring.version}.jar" /> |
|---|
| 32 | <path id="aspectPath"> |
|---|
| 33 | <pathelement location="${spring.aspects.jar}" /> |
|---|
| 34 | </path> |
|---|
| 35 | <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc"> |
|---|
| 36 | <classpath refid="maven.plugin.classpath" /> |
|---|
| 37 | </taskdef> |
|---|
| 38 | <iajc verbose="false" source="1.5" destDir="target/classes" 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-core</artifactId> |
|---|
| 138 | <scope>test</scope> |
|---|
| 139 | </dependency> |
|---|
| 140 | <dependency> |
|---|
| 141 | <groupId>org.unitils</groupId> |
|---|
| 142 | <artifactId>unitils-database</artifactId> |
|---|
| 143 | <scope>test</scope> |
|---|
| 144 | </dependency> |
|---|
| 145 | <dependency> |
|---|
| 146 | <groupId>org.unitils</groupId> |
|---|
| 147 | <artifactId>unitils-dbmaintainer</artifactId> |
|---|
| 148 | <scope>test</scope> |
|---|
| 149 | </dependency> |
|---|
| 150 | <dependency> |
|---|
| 151 | <groupId>org.unitils</groupId> |
|---|
| 152 | <artifactId>unitils-dbunit</artifactId> |
|---|
| 153 | <scope>test</scope> |
|---|
| 154 | </dependency> |
|---|
| 155 | <dependency> |
|---|
| 156 | <groupId>org.unitils</groupId> |
|---|
| 157 | <artifactId>unitils-easymock</artifactId> |
|---|
| 158 | <scope>test</scope> |
|---|
| 159 | </dependency> |
|---|
| 160 | <dependency> |
|---|
| 161 | <groupId>org.unitils</groupId> |
|---|
| 162 | <artifactId>unitils-mock</artifactId> |
|---|
| 163 | <scope>test</scope> |
|---|
| 164 | </dependency> |
|---|
| 165 | <dependency> |
|---|
| 166 | <groupId>org.unitils</groupId> |
|---|
| 167 | <artifactId>unitils-inject</artifactId> |
|---|
| 168 | <scope>test</scope> |
|---|
| 169 | </dependency> |
|---|
| 170 | <dependency> |
|---|
| 171 | <groupId>org.unitils</groupId> |
|---|
| 172 | <artifactId>unitils-orm</artifactId> |
|---|
| 173 | <scope>test</scope> |
|---|
| 174 | </dependency> |
|---|
| 175 | <dependency> |
|---|
| 176 | <groupId>org.unitils</groupId> |
|---|
| 177 | <artifactId>unitils-spring</artifactId> |
|---|
| 178 | <scope>test</scope> |
|---|
| 179 | </dependency> |
|---|
| 180 | <dependency> |
|---|
| 181 | <groupId>commons-lang</groupId> |
|---|
| 182 | <artifactId>commons-lang</artifactId> |
|---|
| 183 | </dependency> |
|---|
| 184 | <dependency> |
|---|
| 185 | <groupId>org.springframework</groupId> |
|---|
| 186 | <artifactId>org.springframework.jdbc</artifactId> |
|---|
| 187 | </dependency> |
|---|
| 188 | <dependency> |
|---|
| 189 | <groupId>org.springframework</groupId> |
|---|
| 190 | <artifactId>org.springframework.test</artifactId> |
|---|
| 191 | </dependency> |
|---|
| 192 | <dependency> |
|---|
| 193 | <groupId>org.springframework</groupId> |
|---|
| 194 | <artifactId>org.springframework.aspects</artifactId> |
|---|
| 195 | </dependency> |
|---|
| 196 | <dependency> |
|---|
| 197 | <groupId>net.sf.opencsv</groupId> |
|---|
| 198 | <artifactId>opencsv</artifactId> |
|---|
| 199 | </dependency> |
|---|
| 200 | <dependency> |
|---|
| 201 | <groupId>org.apache.poi</groupId> |
|---|
| 202 | <artifactId>poi</artifactId> |
|---|
| 203 | </dependency> |
|---|
| 204 | <dependency> |
|---|
| 205 | <groupId>commons-lang</groupId> |
|---|
| 206 | <artifactId>commons-lang</artifactId> |
|---|
| 207 | </dependency> |
|---|
| 208 | <dependency> |
|---|
| 209 | <groupId>joda-time</groupId> |
|---|
| 210 | <artifactId>joda-time</artifactId> |
|---|
| 211 | </dependency> |
|---|
| 212 | <dependency> |
|---|
| 213 | <groupId>joda-time</groupId> |
|---|
| 214 | <artifactId>joda-time-hibernate</artifactId> |
|---|
| 215 | <exclusions> |
|---|
| 216 | <exclusion> |
|---|
| 217 | <artifactId>ehcache</artifactId> |
|---|
| 218 | <groupId>ehcache</groupId> |
|---|
| 219 | </exclusion> |
|---|
| 220 | <exclusion> |
|---|
| 221 | <artifactId>cglib-full</artifactId> |
|---|
| 222 | <groupId>cglib</groupId> |
|---|
| 223 | </exclusion> |
|---|
| 224 | <exclusion> |
|---|
| 225 | <artifactId>hibernate</artifactId> |
|---|
| 226 | <groupId>org.hibernate</groupId> |
|---|
| 227 | </exclusion> |
|---|
| 228 | <exclusion> |
|---|
| 229 | <artifactId>hibernate</artifactId> |
|---|
| 230 | <groupId>hibernate</groupId> |
|---|
| 231 | </exclusion> |
|---|
| 232 | </exclusions> |
|---|
| 233 | </dependency> |
|---|
| 234 | <dependency> |
|---|
| 235 | <groupId>org.springframework.security</groupId> |
|---|
| 236 | <artifactId>spring-security-core</artifactId> |
|---|
| 237 | </dependency> |
|---|
| 238 | <dependency> |
|---|
| 239 | <groupId>com.ibm.lsid</groupId> |
|---|
| 240 | <artifactId>lsid-client</artifactId> |
|---|
| 241 | </dependency> |
|---|
| 242 | <dependency> |
|---|
| 243 | <groupId>wsdl4j</groupId> |
|---|
| 244 | <artifactId>wsdl4j</artifactId> |
|---|
| 245 | </dependency> |
|---|
| 246 | <dependency> |
|---|
| 247 | <groupId>javax.xml.bind</groupId> |
|---|
| 248 | <artifactId>jaxb-api</artifactId> |
|---|
| 249 | <version>2.1</version> |
|---|
| 250 | </dependency> |
|---|
| 251 | <dependency> |
|---|
| 252 | <groupId>jdom</groupId> |
|---|
| 253 | <artifactId>jdom</artifactId> |
|---|
| 254 | </dependency> |
|---|
| 255 | <dependency> |
|---|
| 256 | <groupId>javax.validation</groupId> |
|---|
| 257 | <artifactId>validation-api</artifactId> |
|---|
| 258 | </dependency> |
|---|
| 259 | <dependency> |
|---|
| 260 | <groupId>org.hibernate</groupId> |
|---|
| 261 | <artifactId>hibernate-validator</artifactId> |
|---|
| 262 | </dependency> |
|---|
| 263 | <dependency> |
|---|
| 264 | <groupId>org.slf4j</groupId> |
|---|
| 265 | <artifactId>slf4j-log4j12</artifactId> |
|---|
| 266 | </dependency> |
|---|
| 267 | <dependency> |
|---|
| 268 | <groupId>jdom</groupId> |
|---|
| 269 | <artifactId>jdom</artifactId> |
|---|
| 270 | </dependency> |
|---|
| 271 | </dependencies> |
|---|
| 272 | </project> |
|---|