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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-commons/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
  <parent>
 
6
    <groupId>org.hisp.dhis</groupId>
 
7
    <artifactId>dhis-web</artifactId>
 
8
    <version>2.0.1-SNAPSHOT</version>
 
9
  </parent>
 
10
  
 
11
  <artifactId>dhis-web-commons</artifactId>
 
12
  <packaging>jar</packaging>
 
13
  <name>DHIS Common Functionality for Web</name>
 
14
  
 
15
  <build>
 
16
    <plugins>
 
17
      <plugin>
 
18
        <groupId>org.apache.maven.plugins</groupId>
 
19
        <artifactId>maven-antrun-plugin</artifactId>
 
20
        <executions>
 
21
          <execution>
 
22
            <phase>generate-resources</phase>
 
23
            <configuration>
 
24
              <tasks>
 
25
                <tstamp>
 
26
                  <format property="now" pattern="yyyy-MM-dd HH:mm:ss"/>
 
27
                </tstamp>
 
28
                <mkdir dir="${project.build.outputDirectory}"/>
 
29
                <echo file="${project.build.outputDirectory}/build.properties"
 
30
                  message="build.version = ${version}&#10;build.time = ${now}&#10;"/>
 
31
              </tasks>
 
32
            </configuration>
 
33
            <goals>
 
34
              <goal>run</goal>
 
35
            </goals>
 
36
          </execution>
 
37
        </executions>
 
38
      </plugin>
 
39
    </plugins>
 
40
  </build>
 
41
  
 
42
  <dependencies>
 
43
    
 
44
    <!-- DHIS -->
 
45
    
 
46
    <dependency>
 
47
      <groupId>org.hisp.dhis</groupId>
 
48
      <artifactId>dhis-api</artifactId>
 
49
    </dependency>
 
50
    <dependency>
 
51
      <groupId>org.hisp.dhis</groupId>
 
52
      <artifactId>dhis-i18n-static</artifactId>
 
53
    </dependency>
 
54
    <dependency>
 
55
      <groupId>org.hisp.dhis</groupId>
 
56
      <artifactId>dhis-i18n-db</artifactId>
 
57
    </dependency>
 
58
    <dependency>
 
59
      <groupId>org.hisp.dhis</groupId>
 
60
      <artifactId>dhis-service-user-hibernate</artifactId>
 
61
    </dependency>
 
62
    <dependency>
 
63
      <groupId>org.hisp.dhis</groupId>
 
64
      <artifactId>dhis-service-core</artifactId>
 
65
    </dependency>
 
66
    <dependency>
 
67
      <groupId>org.hisp.dhis</groupId>
 
68
      <artifactId>dhis-service-organisationunit</artifactId>
 
69
    </dependency>
 
70
    <dependency>
 
71
      <groupId>org.hisp.dhis</groupId>
 
72
      <artifactId>dhis-support-transaction</artifactId>
 
73
    </dependency>
 
74
    <dependency>
 
75
      <groupId>org.hisp.dhis</groupId>
 
76
      <artifactId>dhis-support-test</artifactId>
 
77
    </dependency>
 
78
    <dependency>
 
79
      <groupId>org.hisp.dhis</groupId>
 
80
      <artifactId>dhis-support-webwork</artifactId>
 
81
    </dependency>
 
82
    <dependency>
 
83
      <groupId>org.hisp.dhis</groupId>
 
84
      <artifactId>dhis-support-system</artifactId>
 
85
    </dependency>
 
86
    <dependency>
 
87
      <groupId>org.hisp.dhis</groupId>
 
88
      <artifactId>dhis-support-external</artifactId>
 
89
    </dependency>
 
90
    <dependency>
 
91
      <groupId>org.hisp.dhis</groupId>
 
92
      <artifactId>dhis-options</artifactId>
 
93
    </dependency>
 
94
    
 
95
    <!-- Web -->
 
96
    
 
97
    <dependency>
 
98
      <groupId>com.opensymphony</groupId>
 
99
      <artifactId>webwork</artifactId>
 
100
    </dependency>
 
101
    <dependency>
 
102
      <groupId>javax.servlet</groupId>
 
103
      <artifactId>servlet-api</artifactId>
 
104
    </dependency>
 
105
    
 
106
    <!-- Other -->
 
107
    
 
108
    <dependency>
 
109
      <groupId>org.springframework</groupId>
 
110
      <artifactId>spring</artifactId>
 
111
    </dependency>
 
112
    <dependency>
 
113
      <groupId>commons-logging</groupId>
 
114
      <artifactId>commons-logging</artifactId>
 
115
    </dependency>
 
116
    <dependency>
 
117
      <groupId>org.apache.commons</groupId>
 
118
      <artifactId>commons-email</artifactId>
 
119
    </dependency> 
 
120
    <dependency>
 
121
      <groupId>com.thoughtworks.xstream</groupId>
 
122
      <artifactId>xstream</artifactId>
 
123
    </dependency>
 
124
    <dependency>
 
125
      <groupId>xpp3</groupId>
 
126
      <artifactId>xpp3</artifactId>
 
127
    </dependency>
 
128
  </dependencies>
 
129
</project>