~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-support/dhis-support-hibernate/pom.xml

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<project xmlns="http://maven.apache.org/POM/4.0.0"
 
2
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
3
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
4
  <modelVersion>4.0.0</modelVersion>
 
5
  
 
6
  <parent>
 
7
    <groupId>org.hisp.dhis</groupId>
 
8
    <artifactId>dhis-support</artifactId>
 
9
    <version>2.0.1-SNAPSHOT</version>
 
10
  </parent>
 
11
  
 
12
  <artifactId>dhis-support-hibernate</artifactId>
 
13
  <packaging>jar</packaging>
 
14
  <name>DHIS Hibernate Support</name>
 
15
  
 
16
  <dependencies>
 
17
    
 
18
    <!-- DHIS -->
 
19
    
 
20
    <dependency>
 
21
      <groupId>org.hisp.dhis</groupId>
 
22
      <artifactId>dhis-api</artifactId>
 
23
    </dependency>
 
24
    <dependency>
 
25
      <groupId>org.hisp.dhis</groupId>
 
26
      <artifactId>dhis-support-test</artifactId>
 
27
    </dependency>
 
28
    <dependency>
 
29
      <groupId>org.hisp.dhis</groupId>
 
30
      <artifactId>dhis-support-external</artifactId>
 
31
    </dependency>
 
32
    
 
33
    <!-- Hibernate -->
 
34
    
 
35
    <dependency>
 
36
      <groupId>org.hibernate</groupId>
 
37
      <artifactId>hibernate</artifactId>
 
38
    </dependency>
 
39
    <dependency>
 
40
      <groupId>net.sf.ehcache</groupId>
 
41
      <artifactId>ehcache</artifactId>
 
42
    </dependency>
 
43
    <dependency>
 
44
      <groupId>geronimo-spec</groupId>
 
45
      <artifactId>geronimo-spec-jta</artifactId>
 
46
    </dependency>
 
47
    <dependency>
 
48
      <groupId>c3p0</groupId>
 
49
      <artifactId>c3p0</artifactId>
 
50
    </dependency>
 
51
    
 
52
    <!-- Database connectors -->
 
53
    
 
54
    <dependency>
 
55
      <groupId>mysql</groupId>
 
56
      <artifactId>mysql-connector-java</artifactId>
 
57
    </dependency>
 
58
    <dependency>
 
59
          <groupId>postgresql</groupId>
 
60
          <artifactId>postgresql</artifactId>
 
61
        </dependency>
 
62
    
 
63
    <!-- Other -->
 
64
    
 
65
    <dependency>
 
66
      <groupId>org.springframework</groupId>
 
67
      <artifactId>spring</artifactId>
 
68
    </dependency>
 
69
    <dependency>
 
70
      <groupId>commons-logging</groupId>
 
71
      <artifactId>commons-logging</artifactId>
 
72
    </dependency> 
 
73
    <dependency>
 
74
      <groupId>com.h2database</groupId>
 
75
      <artifactId>h2</artifactId>
 
76
    </dependency>
 
77
    
 
78
    <!-- Monitoring -->
 
79
    <!--
 
80
    <dependency>
 
81
      <groupId>com.elvyx</groupId>
 
82
      <artifactId>elvyx</artifactId>
 
83
      <version>1.0.24</version>
 
84
    </dependency> -->
 
85
    
 
86
  </dependencies>
 
87
</project>