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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-importexport/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-services</artifactId>
 
9
    <version>2.0.1-SNAPSHOT</version>
 
10
  </parent>
 
11
  
 
12
  <artifactId>dhis-service-importexport</artifactId>
 
13
  <packaging>jar</packaging>
 
14
  <name>DHIS Import-Export Service</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-service-core</artifactId>
 
27
    </dependency>
 
28
    <dependency>
 
29
      <groupId>org.hisp.dhis</groupId>
 
30
      <artifactId>dhis-service-organisationunit</artifactId>
 
31
    </dependency>
 
32
    <dependency>
 
33
      <groupId>org.hisp.dhis</groupId>
 
34
      <artifactId>dhis-service-datamart-default</artifactId>
 
35
    </dependency>
 
36
    <dependency>
 
37
      <groupId>org.hisp.dhis</groupId>
 
38
      <artifactId>dhis-service-jdbc</artifactId>
 
39
    </dependency>
 
40
    <dependency>
 
41
      <groupId>org.hisp.dhis</groupId>
 
42
      <artifactId>dhis-service-reporting</artifactId>
 
43
    </dependency>
 
44
    <dependency>
 
45
      <groupId>org.hisp.dhis</groupId>
 
46
      <artifactId>dhis-support-hibernate</artifactId>
 
47
    </dependency>
 
48
    <dependency>
 
49
      <groupId>org.hisp.dhis</groupId>
 
50
      <artifactId>dhis-support-system</artifactId>
 
51
    </dependency>
 
52
    <dependency>
 
53
      <groupId>org.hisp.dhis</groupId>
 
54
      <artifactId>dhis-support-external</artifactId>
 
55
    </dependency>
 
56
    
 
57
    <!-- Other -->
 
58
    
 
59
    <dependency>
 
60
      <groupId>org.amplecode</groupId>
 
61
      <artifactId>staxwax</artifactId>
 
62
    </dependency>
 
63
    <dependency>
 
64
      <groupId>com.lowagie</groupId>
 
65
      <artifactId>itext</artifactId>
 
66
    </dependency>
 
67
    <dependency>
 
68
      <groupId>commons-logging</groupId>
 
69
      <artifactId>commons-logging</artifactId>
 
70
    </dependency>
 
71
    <dependency>
 
72
      <groupId>commons-collections</groupId>
 
73
      <artifactId>commons-collections</artifactId>
 
74
    </dependency>
 
75
    <dependency>
 
76
      <groupId>ognl</groupId>
 
77
      <artifactId>ognl</artifactId>
 
78
    </dependency>
 
79
    <dependency>
 
80
      <groupId>joda-time</groupId>
 
81
      <artifactId>joda-time</artifactId>
 
82
    </dependency>
 
83
    <dependency>
 
84
      <groupId>com.ibatis</groupId>
 
85
      <artifactId>ibatis2-common</artifactId>
 
86
    </dependency>
 
87
    <dependency>
 
88
      <groupId>com.ibatis</groupId>
 
89
      <artifactId>ibatis2-sqlmap</artifactId>
 
90
    </dependency>
 
91
    <dependency>
 
92
      <groupId>com.thoughtworks.xstream</groupId>
 
93
      <artifactId>xstream</artifactId>
 
94
    </dependency>
 
95
    <dependency>
 
96
      <groupId>xpp3</groupId>
 
97
      <artifactId>xpp3</artifactId>
 
98
    </dependency>
 
99
    <dependency>
 
100
      <groupId>org.amplecode</groupId>
 
101
      <artifactId>cave-process</artifactId>
 
102
    </dependency>
 
103
  </dependencies>
 
104
</project>