Project

General

Profile

Download (8.72 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?><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">
2
  <parent>
3
    <artifactId>cdmlib-parent</artifactId>
4
    <groupId>eu.etaxonomy</groupId>
5
    <version>3.4.0-SNAPSHOT</version>
6
  <relativePath>../pom.xml</relativePath>
7
  </parent>
8
  <modelVersion>4.0.0</modelVersion>
9
  <artifactId>cdmlib-model</artifactId>
10
  <name>CDM Domain Model</name>
11
  <description>The domain model java implementation of EDIT's Common Data Model</description>
12
  <scm>
13
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</connection>
14
    <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</developerConnection>
15
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-model/</url>
16
  </scm>
17
  <build>
18
    <plugins>
19
      <plugin>
20
        <artifactId>maven-antrun-plugin</artifactId>
21
        <executions>
22
          <execution>
23
            <id>aspectj-main</id>
24
            <phase>process-sources</phase>
25
            <goals>
26
              <goal>run</goal>
27
            </goals>
28
            <configuration>
29
              <tasks>
30
                <property name="spring.aspects.jar" value="${settings.localRepository}/org/springframework/org.springframework.aspects/${spring.version}/org.springframework.aspects-${spring.version}.jar" />
31
                <path id="aspectPath">
32
                  <pathelement location="${spring.aspects.jar}" />
33
                </path>
34
                <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc">
35
                  <classpath refid="maven.plugin.classpath" />
36
                </taskdef>
37
                <iajc verbose="false" source="${java.codelevel}" destDir="target/classes" aspectPathRef="aspectPath">
38
                  <classpath refid="maven.plugin.classpath" />
39
                  <classpath refid="maven.compile.classpath" />
40
                  <sourceroots>
41
                    <pathelement location="src/main/java" />
42
                  </sourceroots>
43
                </iajc>
44
              </tasks>
45
            </configuration>
46
          </execution>
47
          <execution>
48
            <id>aspectj-test</id>
49
            <phase>process-test-sources</phase>
50
            <goals>
51
              <goal>run</goal>
52
            </goals>
53
            <configuration>
54
              <tasks>
55
                <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc">
56
                  <classpath refid="maven.plugin.classpath" />
57
                </taskdef>
58
                <iajc verbose="false" source="${java.codelevel}" destDir="target/test-classes">
59
                  <classpath refid="maven.plugin.classpath" />
60
                  <classpath refid="maven.compile.classpath" />
61
                  <classpath refid="maven.test.classpath" />
62
                  <sourceroots>
63
                    <pathelement location="src/test/java" />
64
                  </sourceroots>
65
                </iajc>
66
              </tasks>
67
          </configuration>
68
        </execution>
69
      </executions>
70
      <dependencies>
71
          <dependency>
72
            <groupId>org.aspectj</groupId>
73
            <artifactId>aspectjtools</artifactId>
74
            <version>1.7.1</version>
75
          </dependency>
76
          <dependency>
77
            <groupId>org.aspectj</groupId>
78
            <artifactId>aspectjrt</artifactId>
79
            <version>1.7.1</version>
80
          </dependency>
81
      </dependencies>
82
      </plugin>
83
    </plugins>
84
  </build>
85
  <dependencies>
86
    <dependency>
87
      <groupId>eu.etaxonomy</groupId>
88
      <artifactId>cdmlib-commons</artifactId>
89
    </dependency>
90
    <dependency>
91
      <groupId>javax.xml.bind</groupId>
92
      <artifactId>jaxb-api</artifactId>
93
    </dependency>
94
    <dependency>
95
      <groupId>xml-resolver</groupId>
96
      <artifactId>xml-resolver</artifactId>
97
    </dependency>
98
    <dependency>
99
      <groupId>javax.activation</groupId>
100
      <artifactId>activation</artifactId>
101
    </dependency>
102
    <dependency>
103
      <groupId>com.sun.xml.bind</groupId>
104
      <artifactId>jaxb-impl</artifactId>
105
    </dependency>
106
    <dependency>
107
      <groupId>com.sun.xml.bind</groupId>
108
      <artifactId>jaxb1-impl</artifactId>
109
    </dependency>
110
    <dependency>
111
      <groupId>com.sun.xml.bind</groupId>
112
      <artifactId>jaxb-xjc</artifactId>
113
    </dependency>
114
    <dependency>
115
      <groupId>org.aspectj</groupId>
116
      <artifactId>aspectjrt</artifactId>
117
    </dependency>
118
<!--     Part of hibernate-core since 3.6 -->
119
<!--     <dependency> -->
120
<!--       <groupId>org.hibernate</groupId> -->
121
<!--       <artifactId>hibernate-annotations</artifactId> -->
122
<!--     </dependency> -->
123
    <dependency>
124
      <groupId>org.hibernate</groupId>
125
      <artifactId>hibernate-envers</artifactId>
126
    </dependency>
127
    <dependency>
128
      <groupId>org.hibernate</groupId>
129
      <artifactId>hibernate-search-engine</artifactId>
130
    </dependency>
131
    <dependency>
132
        <groupId>org.apache.lucene</groupId>
133
        <artifactId>lucene-core</artifactId>
134
    </dependency>
135
<!--     <dependency> -->
136
<!--       <groupId>org.unitils</groupId> -->
137
<!--       <artifactId>unitils-core</artifactId> -->
138
<!--       <scope>test</scope> -->
139
<!--     </dependency> -->
140
<!--     <dependency> -->
141
<!--       <groupId>org.unitils</groupId> -->
142
<!--       <artifactId>unitils-database</artifactId> -->
143
<!--       <scope>test</scope> -->
144
<!--     </dependency> -->
145
<!--     <dependency> -->
146
<!--       <groupId>org.unitils</groupId> -->
147
<!--       <artifactId>unitils-dbmaintainer</artifactId> -->
148
<!--       <scope>test</scope> -->
149
<!--     </dependency> -->
150
<!--     <dependency> -->
151
<!--       <groupId>org.unitils</groupId> -->
152
<!--       <artifactId>unitils-dbunit</artifactId> -->
153
<!--       <scope>test</scope> -->
154
<!--     </dependency> -->
155
<!--      <dependency> -->
156
<!--       <groupId>org.unitils</groupId> -->
157
<!--       <artifactId>unitils-easymock</artifactId> -->
158
<!--       <scope>test</scope> -->
159
<!--     </dependency> -->
160
<!--     <dependency> -->
161
<!--       <groupId>org.unitils</groupId> -->
162
<!--       <artifactId>unitils-mock</artifactId> -->
163
<!--       <scope>test</scope> -->
164
<!--     </dependency> -->
165
<!--     <dependency> -->
166
<!--       <groupId>org.unitils</groupId> -->
167
<!--       <artifactId>unitils-inject</artifactId> -->
168
<!--       <scope>test</scope> -->
169
<!--     </dependency> -->
170
<!--      <dependency> -->
171
<!--       <groupId>org.unitils</groupId> -->
172
<!--       <artifactId>unitils-orm</artifactId> -->
173
<!--       <scope>test</scope> -->
174
<!--       <exclusions> -->
175
<!--      	<exclusion> -->
176
<!--      		<groupId>javax.persistence</groupId> -->
177
<!--       		<artifactId>persistence-api</artifactId> -->
178
<!--      	</exclusion> -->
179
<!--       </exclusions> -->
180
<!--     </dependency> -->
181
<!--      <dependency> -->
182
<!--       <groupId>org.unitils</groupId> -->
183
<!--       <artifactId>unitils-spring</artifactId> -->
184
<!--       <scope>test</scope> -->
185
<!--     </dependency> -->
186
    <dependency>
187
      <groupId>org.springframework</groupId>
188
      <artifactId>org.springframework.jdbc</artifactId>
189
    </dependency>
190
    <dependency>
191
      <groupId>org.springframework</groupId>
192
      <artifactId>org.springframework.test</artifactId>
193
    </dependency>
194
    <dependency>
195
      <groupId>org.springframework</groupId>
196
      <artifactId>org.springframework.aspects</artifactId>
197
    </dependency>
198
    <dependency>
199
      <groupId>net.sf.opencsv</groupId>
200
      <artifactId>opencsv</artifactId>
201
    </dependency>
202
    <dependency>
203
      <groupId>org.apache.poi</groupId>
204
      <artifactId>poi</artifactId>
205
    </dependency>
206
  <dependency>
207
      <groupId>commons-lang</groupId>
208
      <artifactId>commons-lang</artifactId>
209
    </dependency>
210
    <dependency>
211
      <groupId>joda-time</groupId>
212
      <artifactId>joda-time</artifactId>
213
    </dependency>
214
    <dependency>
215
		<groupId>org.jadira.usertype</groupId>
216
		<artifactId>usertype.jodatime</artifactId>
217
	</dependency>
218
    <dependency>
219
      <groupId>org.springframework.security</groupId>
220
      <artifactId>spring-security-core</artifactId>
221
    </dependency>
222
    <dependency>
223
      <groupId>com.ibm.lsid</groupId>
224
      <artifactId>lsid-client</artifactId>
225
    </dependency>
226
    <dependency>
227
      <groupId>wsdl4j</groupId>
228
      <artifactId>wsdl4j</artifactId>
229
    </dependency>
230
    <dependency>
231
      <groupId>javax.validation</groupId>
232
      <artifactId>validation-api</artifactId>
233
    </dependency>
234
    <dependency>
235
      <groupId>org.hibernate</groupId>
236
      <artifactId>hibernate-validator</artifactId>
237
    </dependency>
238
    <dependency>
239
      <groupId>org.slf4j</groupId>
240
      <artifactId>slf4j-log4j12</artifactId>
241
    </dependency>
242
    <dependency>
243
	  <groupId>net.sf.ehcache</groupId>
244
	  <artifactId>ehcache-core</artifactId>	  
245
	</dependency>
246
  </dependencies>
247
</project>
(3-3/3)