(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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <parent>
4 <artifactId>cdmParent</artifactId>
5 <groupId>eu.etaxonomy.cdm</groupId>
6 <version>0.1</version>
7 <relativePath>../cdmParent/pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>cdmLibrary</artifactId>
11 <name>EDIT Common Data Model Library</name>
12 <version>0.2.3-Snapshot</version>
13 <description>EDIT cdm library</description>
14 <scm>
15 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary</connection>
16 <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary</developerConnection>
17 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlibrary</url>
18 </scm>
19 <build>
20 <plugins>
21 <plugin>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <configuration>
24 <source>1.5</source>
25 <target>1.5</target>
26 </configuration>
27 </plugin>
28 <plugin>
29 <artifactId>maven-surefire-plugin</artifactId>
30 <configuration>
31 <includes>
32 <include>**/*Test.java</include>
33 </includes>
34 </configuration>
35 </plugin>
36 <plugin>
37 <artifactId>maven-antrun-plugin</artifactId>
38 <executions>
39 <execution>
40 <id>echodir</id>
41 <phase>verify</phase>
42 <goals>
43 <goal>run</goal>
44 </goals>
45 <inherited>false</inherited>
46 <configuration>
47 <tasks>
48 <echo>XXXXXXXXXXXXXXXXXX Build Dir:</echo>
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 <configuration>
58 <source>1.5</source>
59 <target>1.5</target>
60 </configuration>
61 <executions>
62 <execution>
63 <goals>
64 <goal>compile</goal> <!-- use this goal to weave all your main classes -->
65 <goal>test-compile</goal> <!-- use this goal to weave all your test classes -->
66 </goals>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72 <dependencies>
73 <dependency>
74 <groupId>aspectj</groupId>
75 <artifactId>aspectjrt</artifactId>
76 <version>1.5.2a</version>
77 </dependency>
78 <dependency>
79 <groupId>com.sun.xml.rpc</groupId>
80 <artifactId>jaxrpc-impl</artifactId>
81 <version>1.1.3_01</version>
82 </dependency>
83 <dependency>
84 <groupId>hsqldb</groupId>
85 <artifactId>hsqldb</artifactId>
86 <version>1.8.0.7</version>
87 </dependency>
88 <dependency>
89 <groupId>javax.persistence</groupId>
90 <artifactId>ejb</artifactId>
91 <version>3</version>
92 </dependency>
93 <dependency>
94 <groupId>javax.xml</groupId>
95 <artifactId>jaxrpc-api</artifactId>
96 <version>1.1</version>
97 </dependency>
98 <dependency>
99 <groupId>javax.xml.bind</groupId>
100 <artifactId>jaxb-api</artifactId>
101 <version>2.0</version>
102 </dependency>
103 <dependency>
104 <groupId>mysql</groupId>
105 <artifactId>mysql-connector-java</artifactId>
106 <version>5.0.5</version>
107 </dependency>
108 <dependency>
109 <groupId>org.hibernate</groupId>
110 <artifactId>hibernate-commons-annotations</artifactId>
111 <version>3.3.0.ga</version>
112 </dependency>
113 <dependency>
114 <groupId>org.hibernate</groupId>
115 <artifactId>hibernate-annotations</artifactId>
116 <version>3.3.0.ga</version>
117 </dependency>
118 <dependency>
119 <groupId>org.hibernate</groupId>
120 <artifactId>hibernate</artifactId>
121 <version>3.2.5.ga</version>
122 </dependency>
123 <dependency>
124 <groupId>org.springframework</groupId>
125 <artifactId>spring-aop</artifactId>
126 <version>2.0.7</version>
127 </dependency>
128 <dependency>
129 <groupId>org.springframework</groupId>
130 <artifactId>spring</artifactId>
131 <version>2.0.7</version>
132 </dependency>
133 <dependency>
134 <groupId>xerces</groupId>
135 <artifactId>xercesImpl</artifactId>
136 <version>2.7.1</version>
137 </dependency>
138 </dependencies>
139 <distributionManagement>
140 <repository>
141 <id>ssh-repository</id>
142 <url>scpexe://dev.e-taxonomy.eu/svn/trunk/javaLibraries</url>
143 </repository>
144 </distributionManagement>
145 <!--
146 <aspectSourceDirectory>src/main/java/eu/etaxonomy/cdm/aspect</aspectSourceDirectory>
147 -->
148 </project>
149