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