Project

General

Profile

Download (2.66 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/xsd/maven-4.0.0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <parent>
5
    <artifactId>cdmlib-parent</artifactId>
6
    <groupId>eu.etaxonomy</groupId>
7
    <version>3.2.0-SNAPSHOT</version>
8
	<relativePath>../pom.xml</relativePath>
9
  </parent>
10

    
11
  <groupId>eu.etaxonomy</groupId>
12
  <artifactId>cdmlib-remote-webapp</artifactId>
13
  <name>CDM Remote Webapp</name>
14
  <packaging>war</packaging>
15

    
16
  <properties>
17
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18
  </properties>
19

    
20
  <scm>
21
    <connection>
22
      scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/
23
    </connection>
24
    <developerConnection>
25
      scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-remote/
26
    </developerConnection>
27
    <url>
28
      http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-remote/
29
    </url>
30
  </scm>
31

    
32
  <dependencies>
33
    <dependency>
34
      <groupId>eu.etaxonomy</groupId>
35
      <artifactId>cdmlib-remote</artifactId>
36
    </dependency>
37
      <dependency>
38
      	<!-- TODO this is also offered by cdmlib-remote, can it be removed? What does provided mean? -->
39
        <groupId>javax.servlet</groupId>
40
        <artifactId>servlet-api</artifactId>
41
        <scope>provided</scope>
42
      </dependency>
43

    
44
      <dependency>
45
        <groupId>org.easymock</groupId>
46
        <artifactId>easymock</artifactId>
47
      </dependency>
48
      <dependency>
49
        <groupId>xmlunit</groupId>
50
        <artifactId>xmlunit</artifactId>
51
      </dependency>
52

    
53
      <dependency>
54
        <groupId>commons-io</groupId>
55
        <artifactId>commons-io</artifactId>
56
      </dependency>
57
      <!-- JsonView -->
58
      <dependency>
59
        <!--  TODO can this be removed, it already exists in cdmlib-remote -->
60
        <groupId>net.sf.json-lib</groupId>
61
        <artifactId>json-lib</artifactId>
62
        <classifier>jdk15</classifier>
63
      </dependency>
64

    
65

    
66
      <!-- XmlView -->
67
      
68
      <dependency>
69
      	<groupId>xom</groupId>
70
        <artifactId>xom</artifactId>
71
      </dependency>
72

    
73
      <dependency>
74
        <groupId>com.yourkit</groupId>
75
        <artifactId>yjp-controller-api-redist</artifactId>
76
        <scope>test</scope>
77
    </dependency>
78
 
79
  </dependencies>
80

    
81
    <build>
82
      <!-- Configure the webapp -->
83
      <finalName>cdmserver</finalName>
84
      <plugins>
85
        <plugin>
86
          <groupId>org.apache.maven.plugins</groupId>
87
          <artifactId>maven-war-plugin</artifactId>
88
          <version>2.1-beta-1</version>
89
        </plugin>
90
      </plugins>
91
    </build>
92
</project>
(3-3/3)