(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.4</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>0.4.5</version>
17 <description>EDIT CDM library</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 <artifactId>maven-antrun-plugin</artifactId>
42 <executions>
43 <execution>
44 <phase>generate-resources</phase>
45 <goals>
46 <goal>run</goal>
47 </goals>
48 <configuration>
49 <tasks />
50 </configuration>
51 </execution>
52 </executions>
53 </plugin>
54 <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>aspectj-maven-plugin</artifactId>
57 <executions>
58 <execution>
59 <goals>
60 <goal>compile</goal>
61 <goal>test-compile</goal>
62 </goals>
63 </execution>
64 </executions>
65 <configuration>
66 <source>1.5</source>
67 <target>1.5</target>
68 <includes>
69 <include>**/cdm/**/*.java</include>
70 <include>**/*.aj</include>
71 </includes>
72 </configuration>
73 </plugin>
74 </plugins>
75 </build>
76 <dependencies>
77 <dependency>
78 <groupId>eu.etaxonomy</groupId>
79 <artifactId>cdmlib-commons</artifactId>
80 <version>0.4.5</version>
81 </dependency>
82 <dependency>
83 <groupId>aspectj</groupId>
84 <artifactId>aspectjrt</artifactId>
85 <version>1.5.2a</version>
86 </dependency>
87 <dependency>
88 <groupId>org.hibernate</groupId>
89 <artifactId>hibernate-commons-annotations</artifactId>
90 <version>3.3.0.ga</version>
91 </dependency>
92 <dependency>
93 <groupId>org.hibernate</groupId>
94 <artifactId>hibernate-annotations</artifactId>
95 <version>3.3.0.ga</version>
96 </dependency>
97 <dependency>
98 <groupId>org.springframework</groupId>
99 <artifactId>spring</artifactId>
100 <version>2.5</version>
101 </dependency>
102 <dependency>
103 <groupId>org.springframework</groupId>
104 <artifactId>spring-beans</artifactId>
105 <version>2.5</version>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework</groupId>
109 <artifactId>spring-orm</artifactId>
110 <version>2.5</version>
111 </dependency>
112 <dependency>
113 <groupId>org.springframework</groupId>
114 <artifactId>spring-jdbc</artifactId>
115 <version>2.5</version>
116 </dependency>
117 <dependency>
118 <groupId>org.springframework</groupId>
119 <artifactId>spring-test</artifactId>
120 <version>2.5</version>
121 </dependency>
122 <dependency>
123 <groupId>xerces</groupId>
124 <artifactId>xercesImpl</artifactId>
125 <version>2.7.1</version>
126 </dependency>
127 <dependency>
128 <groupId>jdom</groupId>
129 <artifactId>jdom</artifactId>
130 <version>1.0</version>
131 </dependency>
132 <dependency>
133 <groupId>jaxen</groupId>
134 <artifactId>jaxen</artifactId>
135 <version>1.1</version>
136 </dependency>
137 <dependency>
138 <groupId>net.sf.opencsv</groupId>
139 <artifactId>opencsv</artifactId>
140 <version>1.8</version>
141 </dependency>
142 </dependencies>
143 </project>
144