Project

General

Profile

Download (5.23 KB) Statistics
| Branch: | Tag: | Revision:
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
    <groupId>eu.etaxonomy</groupId>
5
    <artifactId>cdmlib-parent</artifactId>
6
    <version>5.32.0-SNAPSHOT</version>
7
    <relativePath>../pom.xml</relativePath>
8
  </parent>
9

    
10
  <modelVersion>4.0.0</modelVersion>
11
  <artifactId>cdmlib-persistence</artifactId>
12
  <name>CDM Persistence</name>
13
  <description>EDIT CDM library persistence layer. Mainly DAOs</description>
14

    
15
  <build>
16
    <plugins>
17
      <plugin>
18
        <!-- TODO do we need this? At all or move it in cdmlib-test? -->
19
        <groupId>org.apache.maven.plugins</groupId>
20
        <artifactId>maven-jar-plugin</artifactId>
21
        <version>3.2.2</version>
22
        <executions>
23
          <execution>
24
            <goals>
25
              <goal>test-jar</goal>
26
            </goals>
27
          </execution>
28
        </executions>
29
      </plugin>
30
    </plugins>
31
  </build>
32
  <dependencies>
33
    <dependency>
34
      <groupId>eu.etaxonomy</groupId>
35
      <artifactId>cdmlib-model</artifactId>
36
    </dependency>
37
    <dependency>
38
      <groupId>eu.etaxonomy</groupId>
39
      <artifactId>cdmlib-api</artifactId>
40
    </dependency>
41
    <dependency>
42
      <groupId>org.hibernate.common</groupId>
43
      <artifactId>hibernate-commons-annotations</artifactId>
44
    </dependency>
45
    <dependency>
46
      <groupId>org.hibernate</groupId>
47
      <artifactId>hibernate-core</artifactId>
48
    </dependency>
49
    <dependency>
50
      <groupId>org.hibernate</groupId>
51
      <artifactId>hibernate-search-orm</artifactId>
52
    </dependency>
53
    <dependency>
54
      <groupId>org.hibernate</groupId>
55
      <artifactId>hibernate-envers</artifactId>
56
    </dependency>
57
    <dependency>
58
      <groupId>org.hibernate</groupId>
59
      <artifactId>hibernate-c3p0</artifactId>
60
      <!-- only needed as long as hibernate-c3p0 is still dependend on c3p0/c3p0/0.9.1 -->
61
      <exclusions>
62
        <exclusion>
63
            <groupId>com.mchange</groupId>
64
            <artifactId>c3p0</artifactId>  
65
        </exclusion>
66
      </exclusions>
67
    </dependency>
68
<!--     <dependency> -->
69
<!--       Since hibernate 5.0.4 the logging for a Dialect throws ClassDefNotFound for javax.transaction.SystemException if jta is missing  -->
70
<!--       Update: since geronimo-jta (dependency of hibernate-core is on the classpath this should not be an issue anymore 
71
            <groupId>javax.transaction</groupId> -->
72
<!--       <artifactId>jta</artifactId> -->
73
<!--     </dependency>   -->
74
    <dependency>
75
        <groupId>org.apache.lucene</groupId>
76
        <artifactId>lucene-core</artifactId>
77
    </dependency>
78
    <dependency>
79
      <groupId>org.apache.lucene</groupId>
80
      <artifactId>lucene-suggest</artifactId>
81
    </dependency>
82
    <dependency>
83
        <groupId>org.apache.lucene</groupId>
84
        <artifactId>lucene-queryparser</artifactId>
85
    </dependency>
86
    <dependency>
87
        <!-- used by Abstract... and AdvancedBeanInitializer -->
88
        <groupId>commons-beanutils</groupId>
89
        <artifactId>commons-beanutils</artifactId>
90
    </dependency>
91
    <dependency>
92
        <!-- used for class LocalH2 (base class is from commons-dbcp) -->
93
        <!-- TODO we should try to remove this dependency -->
94
        <groupId>commons-dbcp</groupId>
95
        <artifactId>commons-dbcp</artifactId>
96
    </dependency>
97
    <dependency>
98
        <groupId>org.unitils</groupId>
99
        <artifactId>unitils-core</artifactId>
100
        <!-- <scope>test</scope> unscoped since we need this dependency at compile time for H2DbSupport.java -->
101
    </dependency>
102
    
103
    <dependency>
104
      <groupId>eu.etaxonomy</groupId>
105
      <artifactId>cdmlib-test</artifactId>
106
      <scope>test</scope>
107
    </dependency>
108
    <dependency>
109
      <groupId>org.springframework</groupId>
110
      <artifactId>spring-beans</artifactId>
111
    </dependency>
112
    <dependency>
113
      <groupId>org.springframework</groupId>
114
      <artifactId>spring-expression</artifactId>
115
    </dependency>
116
    <dependency>
117
      <groupId>org.springframework</groupId>
118
      <artifactId>spring-orm</artifactId>
119
    </dependency>
120
    <dependency>
121
      <groupId>org.springframework</groupId>
122
      <artifactId>spring-jdbc</artifactId>
123
    </dependency>
124
    <dependency>
125
        <groupId>org.springframework</groupId>
126
        <artifactId>spring-aop</artifactId>
127
    </dependency>
128
    <dependency>
129
      <groupId>org.springframework</groupId>
130
      <artifactId>spring-aspects</artifactId>
131
    </dependency>
132
    <dependency>
133
      <groupId>org.springframework.security</groupId>
134
      <artifactId>spring-security-core</artifactId>
135
    </dependency>
136

    
137
    <!-- ******* DATABASES DRIVER ******* -->
138
      <!-- 
139
            IMPORTANT:
140
            Any driver dependency listed here must be excluded from the 
141
            cdmlib-remote depedency in cdmlib-remote-webapp
142
      -->
143
    <dependency>
144
        <groupId>eu.etaxonomy</groupId>
145
        <artifactId>cdmlib-db</artifactId>
146
        <version>${project.version}</version>
147
    </dependency>
148
  
149
	<!-- Profiling -->
150
<!-- 	<dependency> -->
151
<!-- 		<groupId>com.yourkit</groupId> -->
152
<!-- 		<artifactId>yjp-controller-api-redist</artifactId> -->
153
<!-- 		<scope>test</scope> -->
154
<!-- 	</dependency> -->
155
  </dependencies>
156
</project>
(3-3/3)