(no commit message)
[cdmlib.git] / cdmlib-model / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <!--
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6 -->
7 <parent>
8 <groupId>eu.etaxonomy</groupId>
9 <artifactId>cdmlib-parent</artifactId>
10 <version>1.2-SNAPSHOT</version>
11 </parent>
12
13 <modelVersion>4.0.0</modelVersion>
14 <artifactId>cdmlib-model</artifactId>
15 <name>CDM Domain Model</name>
16 <description>The domain model java implementation of EDIT's Common Data Model</description>
17 <scm>
18 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</connection>
19 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</developerConnection>
20 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-model/</url>
21 </scm>
22
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.codehaus.mojo</groupId>
27 <artifactId>aspectj-maven-plugin</artifactId>
28 <executions>
29 <execution>
30 <goals>
31 <goal>compile</goal>
32 <goal>test-compile</goal>
33 </goals>
34 </execution>
35 </executions>
36 <configuration>
37 <source>1.5</source>
38 <target>1.5</target>
39 <includes>
40 <include>**/cdm/**/*.java</include>
41 <include>**/*.aj</include>
42 </includes>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47
48 <dependencies>
49 <dependency>
50 <groupId>eu.etaxonomy</groupId>
51 <artifactId>cdmlib-commons</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>aspectj</groupId>
55 <artifactId>aspectjrt</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.hibernate</groupId>
59 <artifactId>hibernate-annotations</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.springframework</groupId>
63 <artifactId>spring-jdbc</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.springframework</groupId>
67 <artifactId>spring-test</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>net.sf.opencsv</groupId>
71 <artifactId>opencsv</artifactId>
72 </dependency>
73 </dependencies>
74
75 </project>
76