Project

General

Profile

Download (6.16 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?><project>
2
  <parent>
3
    <artifactId>cdmlib-parent</artifactId>
4
    <groupId>eu.etaxonomy</groupId>
5
    <version>2.1</version>
6
  </parent>
7
  <modelVersion>4.0.0</modelVersion>
8
  <artifactId>cdmlib-model</artifactId>
9
  <name>CDM Domain Model</name>
10
  <description>The domain model java implementation of EDIT's Common Data Model</description>
11
  <scm>
12
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</connection>
13
    <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-model/</developerConnection>
14
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-model/</url>
15
  </scm>
16
  <build>
17
    <plugins>
18
      <plugin>
19
        <artifactId>maven-antrun-plugin</artifactId>
20
        <executions>
21
          <execution>
22
            <id>aspectj-main</id>
23
            <phase>process-sources</phase>
24
            <goals>
25
              <goal>run</goal>
26
            </goals>
27
            <configuration>
28
              <tasks>
29
                <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc">
30
                  <classpath refid="maven.plugin.classpath" />
31
                </taskdef>
32
                <iajc verbose="false" source="1.5" destDir="target/classes">
33
                  <classpath refid="maven.plugin.classpath" />
34
                  <classpath refid="maven.compile.classpath" />
35
                  <sourceroots>
36
                    <pathelement location="src/main/java" />
37
                  </sourceroots>
38
                </iajc>
39
              </tasks>
40
            </configuration>
41
          </execution>
42
          <execution>
43
            <id>aspectj-test</id>
44
            <phase>process-test-sources</phase>
45
            <goals>
46
              <goal>run</goal>
47
            </goals>
48
            <configuration>
49
              <tasks>
50
                <taskdef classname="org.aspectj.tools.ant.taskdefs.AjcTask" name="iajc">
51
                  <classpath refid="maven.plugin.classpath" />
52
                </taskdef>
53
                <iajc verbose="false" source="1.5" destDir="target/test-classes">
54
                  <classpath refid="maven.plugin.classpath" />
55
                  <classpath refid="maven.compile.classpath" />
56
                  <classpath refid="maven.test.classpath" />
57
                  <sourceroots>
58
                    <pathelement location="src/test/java" />
59
                  </sourceroots>
60
                </iajc>
61
              </tasks>
62
            </configuration>
63
          </execution>
64
        </executions>
65
        <dependencies>
66
          <dependency>
67
            <groupId>org.aspectj</groupId>
68
            <artifactId>aspectjtools</artifactId>
69
            <version>1.5.4</version>
70
          </dependency>
71
          <dependency>
72
            <groupId>org.aspectj</groupId>
73
            <artifactId>aspectjrt</artifactId>
74
            <version>1.5.4</version>
75
          </dependency>
76
        </dependencies>
77
      </plugin>
78
    </plugins>
79
  </build>
80
  <dependencies>
81
    <dependency>
82
      <groupId>eu.etaxonomy</groupId>
83
      <artifactId>cdmlib-commons</artifactId>
84
    </dependency>
85
    <dependency>
86
      <groupId>javax.xml.bind</groupId>
87
      <artifactId>jaxb-api</artifactId>
88
    </dependency>
89
    <dependency>
90
      <groupId>xml-resolver</groupId>
91
      <artifactId>xml-resolver</artifactId>
92
    </dependency>
93
    <dependency>
94
      <groupId>javax.activation</groupId>
95
      <artifactId>activation</artifactId>
96
    </dependency>
97
    <dependency>
98
      <groupId>javax.xml.bind</groupId>
99
      <artifactId>jsr173_api</artifactId>
100
    </dependency>
101
    <dependency>
102
      <groupId>com.sun.xml.bind</groupId>
103
      <artifactId>jaxb-impl</artifactId>
104
    </dependency>
105
    <dependency>
106
      <groupId>com.sun.xml.bind</groupId>
107
      <artifactId>jaxb1-impl</artifactId>
108
    </dependency>
109
    <dependency>
110
      <groupId>com.sun.xml.bind</groupId>
111
      <artifactId>jaxb-xjc</artifactId>
112
    </dependency>
113
    <dependency>
114
      <groupId>org.aspectj</groupId>
115
      <artifactId>aspectjrt</artifactId>
116
    </dependency>
117
    <dependency>
118
      <groupId>org.hibernate</groupId>
119
      <artifactId>hibernate-annotations</artifactId>
120
    </dependency>
121
    <dependency>
122
      <groupId>org.hibernate</groupId>
123
      <artifactId>hibernate-envers</artifactId>
124
    </dependency>
125
    <dependency>
126
      <groupId>org.hibernate</groupId>
127
      <artifactId>hibernate-search</artifactId>
128
    </dependency>
129
    <dependency>
130
      <groupId>org.unitils</groupId>
131
      <artifactId>unitils</artifactId>
132
    </dependency>
133
    <dependency>
134
      <groupId>org.springframework</groupId>
135
      <artifactId>spring-jdbc</artifactId>
136
    </dependency>
137
    <dependency>
138
      <groupId>org.springframework</groupId>
139
      <artifactId>spring-test</artifactId>
140
    </dependency>
141
    <dependency>
142
      <groupId>net.sf.opencsv</groupId>
143
      <artifactId>opencsv</artifactId>
144
    </dependency>
145
    <dependency>
146
      <groupId>org.apache.poi</groupId>
147
      <artifactId>poi</artifactId>
148
    </dependency>
149
    <dependency>
150
      <groupId>joda-time</groupId>
151
      <artifactId>joda-time</artifactId>
152
    </dependency>
153
    <dependency>
154
      <groupId>joda-time</groupId>
155
      <artifactId>joda-time-hibernate</artifactId>
156
      <exclusions>
157
        <exclusion>
158
          <artifactId>ehcache</artifactId>
159
          <groupId>ehcache</groupId>
160
        </exclusion>
161
        <exclusion>
162
          <artifactId>cglib-full</artifactId>
163
          <groupId>cglib</groupId>
164
        </exclusion>
165
        <exclusion>
166
          <artifactId>hibernate</artifactId>
167
          <groupId>org.hibernate</groupId>
168
        </exclusion>
169
        <exclusion>
170
          <artifactId>hibernate</artifactId>
171
          <groupId>hibernate</groupId>
172
        </exclusion>
173
      </exclusions>
174
    </dependency>
175
    <dependency>
176
      <groupId>org.springframework.security</groupId>
177
      <artifactId>spring-security-core</artifactId>
178
    </dependency>
179
    <dependency>
180
      <groupId>com.ibm.lsid</groupId>
181
      <artifactId>lsid-client</artifactId>
182
    </dependency>
183
    <dependency>
184
      <groupId>wsdl4j</groupId>
185
      <artifactId>wsdl4j</artifactId>
186
    </dependency>
187
    <dependency>
188
      <groupId>javax.xml.bind</groupId>
189
      <artifactId>jaxb-api</artifactId>
190
      <version>2.1</version>
191
    </dependency>
192
  </dependencies>
193
</project>
(3-3/3)