(no commit message)
[cdmlib.git] / cdmlibrary / 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <parent>
6 <groupId>eu.etaxonomy</groupId>
7 <artifactId>cdmParent</artifactId>
8 <version>0.1</version>
9 <relativePath>../cdmParent/pom.xml</relativePath>
10 </parent>
11 <modelVersion>4.0.0</modelVersion>
12 <artifactId>cdmLibrary</artifactId>
13 <name>EDIT Common Data Model Library</name>
14 <version>0.4.0</version>
15 <description>EDIT cdm library</description>
16 <!-- UNDER WORK -->
17 <scm>
18 <connection>
19 scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/
20 </connection>
21 <developerConnection>
22 scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/
23 </developerConnection>
24 <url>
25 http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlibrary/
26 </url>
27 </scm>
28 <build>
29 <plugins>
30 <!-- <plugin>-->
31 <!-- <artifactId>maven-clean-plugin</artifactId>-->
32 <!-- <executions>-->
33 <!-- <execution>-->
34 <!-- <id>auto-clean</id>-->
35 <!-- <phase>validate</phase>-->
36 <!-- <goals>-->
37 <!-- <goal>clean</goal>-->
38 <!-- </goals>-->
39 <!-- </execution>-->
40 <!-- </executions>-->
41 <!-- </plugin>-->
42 <plugin>
43 <artifactId>maven-compiler-plugin</artifactId>
44 <configuration>
45 <source>1.5</source>
46 <target>1.5</target>
47 </configuration>
48 </plugin>
49 <plugin>
50 <artifactId>maven-surefire-plugin</artifactId>
51 <configuration>
52 <includes>
53 <include>**/*Test.java</include>
54 </includes>
55 </configuration>
56 </plugin>
57 <!-- just testing, may be deleted if necessary -->
58 <plugin>
59 <artifactId>maven-antrun-plugin</artifactId>
60 <executions>
61 <execution>
62 <id>echodir</id>
63 <phase>verify</phase>
64 <goals>
65 <goal>run</goal>
66 </goals>
67 <inherited>false</inherited>
68 <configuration>
69 <tasks>
70 <echo>
71 XXXXXXXXXXXXXXXXXX Build Dir:
72 </echo>
73 </tasks>
74 </configuration>
75 </execution>
76 </executions>
77 </plugin>
78
79 <plugin>
80 <groupId>org.codehaus.mojo</groupId>
81 <artifactId>aspectj-maven-plugin</artifactId>
82 <configuration>
83 <source>1.5</source>
84 <target>1.5</target>
85 <includes>
86 <include>**/cdm/**/*.java</include>
87 <include>**/*.aj</include>
88 </includes>
89 </configuration>
90 <executions>
91 <execution>
92 <goals>
93 <goal>compile</goal>
94 <!-- use this goal to weave all your main classes -->
95 <goal>test-compile</goal>
96 <!--use this goal to weave all your test classes-->
97 </goals>
98 </execution>
99 </executions>
100 </plugin>
101 </plugins>
102 </build>
103 <dependencies>
104 <dependency>
105 <groupId>aspectj</groupId>
106 <artifactId>aspectjrt</artifactId>
107 <version>1.5.2a</version>
108 </dependency>
109 <dependency>
110 <groupId>com.sun.xml.rpc</groupId>
111 <artifactId>jaxrpc-impl</artifactId>
112 <version>1.1.3_01</version>
113 </dependency>
114 <dependency>
115 <groupId>hsqldb</groupId>
116 <artifactId>hsqldb</artifactId>
117 <version>1.8.0.7</version>
118 </dependency>
119 <dependency>
120 <groupId>javax.persistence</groupId>
121 <artifactId>ejb</artifactId>
122 <version>3</version>
123 </dependency>
124 <dependency>
125 <groupId>javax.xml</groupId>
126 <artifactId>jaxrpc-api</artifactId>
127 <version>1.1</version>
128 </dependency>
129 <dependency>
130 <groupId>javax.xml.bind</groupId>
131 <artifactId>jaxb-api</artifactId>
132 <version>2.0</version>
133 </dependency>
134 <dependency>
135 <groupId>mysql</groupId>
136 <artifactId>mysql-connector-java</artifactId>
137 <version>5.0.5</version>
138 </dependency>
139 <dependency>
140 <groupId>org.hibernate</groupId>
141 <artifactId>hibernate-commons-annotations</artifactId>
142 <version>3.3.0.ga</version>
143 </dependency>
144 <dependency>
145 <groupId>org.hibernate</groupId>
146 <artifactId>hibernate-annotations</artifactId>
147 <version>3.3.0.ga</version>
148 </dependency>
149 <dependency>
150 <groupId>org.hibernate</groupId>
151 <artifactId>hibernate</artifactId>
152 <version>3.2.5.ga</version>
153 </dependency>
154 <dependency>
155 <groupId>org.springframework</groupId>
156 <artifactId>spring-aop</artifactId>
157 <version>2.0.7</version>
158 </dependency>
159 <dependency>
160 <groupId>org.springframework</groupId>
161 <artifactId>spring</artifactId>
162 <version>2.0.7</version>
163 </dependency>
164 <dependency>
165 <groupId>xerces</groupId>
166 <artifactId>xercesImpl</artifactId>
167 <version>2.7.1</version>
168 </dependency>
169 </dependencies>
170
171 <!--
172 <aspectSourceDirectory>src/main/java/eu/etaxonomy/cdm/aspect</aspectSourceDirectory>
173 -->
174 </project>