(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 <artifactId>cdmParent</artifactId>
9 <groupId>eu.etaxonomy</groupId>
10 <version>${cdmlib.version}</version>
11 <relativePath>../cdmParent/pom.xml</relativePath>
12 </parent>
13 <modelVersion>4.0.0</modelVersion>
14 <artifactId>cdmlib-model</artifactId>
15 <name>EDIT Common Data Model Library - Domain Model</name>
16 <version>${cdmlib.version}</version>
17 <description>The domain model java implementation of EDIT's Common Data Model</description>
18 <scm>
19 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</connection>
20 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</developerConnection>
21 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-model/</url>
22 </scm>
23 <build>
24 <plugins>
25 <plugin>
26 <artifactId>maven-compiler-plugin</artifactId>
27 <configuration>
28 <source>1.5</source>
29 <target>1.5</target>
30 </configuration>
31 </plugin>
32 <plugin>
33 <artifactId>maven-surefire-plugin</artifactId>
34 <configuration>
35 <includes>
36 <include>**/*Test.java</include>
37 </includes>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>aspectj-maven-plugin</artifactId>
43 <executions>
44 <execution>
45 <goals>
46 <goal>compile</goal>
47 <goal>test-compile</goal>
48 </goals>
49 </execution>
50 </executions>
51 <configuration>
52 <source>1.5</source>
53 <target>1.5</target>
54 <includes>
55 <include>**/cdm/**/*.java</include>
56 <include>**/*.aj</include>
57 </includes>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62 <dependencies>
63 <dependency>
64 <groupId>eu.etaxonomy</groupId>
65 <artifactId>cdmlib-commons</artifactId>
66 <version>${cdmlib.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>aspectj</groupId>
70 <artifactId>aspectjrt</artifactId>
71 <version>1.5.2a</version>
72 </dependency>
73 <dependency>
74 <groupId>org.hibernate</groupId>
75 <artifactId>hibernate-annotations</artifactId>
76 <version>3.3.0.ga</version>
77 </dependency>
78 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>spring-jdbc</artifactId>
81 <version>${spring.version}</version>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework</groupId>
85 <artifactId>spring-test</artifactId>
86 <version>${spring.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>net.sf.opencsv</groupId>
90 <artifactId>opencsv</artifactId>
91 <version>1.8</version>
92 </dependency>
93 <!-- <dependency>-->
94 <!-- <groupId>javax.xml.bind</groupId>-->
95 <!-- <artifactId>jaxb-api</artifactId>-->
96 <!-- <version>2.0</version>-->
97 <!-- </dependency>-->
98 </dependencies>
99 </project>
100