Project

General

Profile

Download (2.99 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" 
3
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
  <!-- 
5
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6
  -->
7
  <parent>
8
    <groupId>eu.etaxonomy</groupId>
9
    <artifactId>cdmlib-parent</artifactId>
10
    <version>1.0.0-SNAPSHOT</version>
11
  </parent>
12
  
13
  <modelVersion>4.0.0</modelVersion>
14
  <artifactId>spring-json</artifactId>
15
  <name>Spring Json View</name>
16
  <url>http://spring-json.sourceforge.net/</url>
17
  <developers>
18
    <developer>
19
      <id>kaiulrich</id>
20
      <name>Kai Ulrich</name>
21
      <email>kaiulrich@users.sourceforge.net</email>
22
      <roles>
23
        <role>Architect</role>
24
        <role>Developer</role>
25
      </roles>
26
      <timezone>+1</timezone>
27
    </developer>
28
  </developers>
29
  <licenses>
30
    <license>
31
      <name>The Apache Software License, Version 2.0</name>
32
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33
      <distribution>repo</distribution>
34
    </license>
35
  </licenses>
36
  <build>
37
    <plugins>
38
      <plugin>
39
        <artifactId>maven-surefire-plugin</artifactId>
40
        <configuration>
41
          <skip>false</skip>
42
        </configuration>
43
      </plugin>
44
    </plugins>
45
  </build>
46
  <dependencies>
47
    <dependency>
48
      <groupId>org.springframework</groupId>
49
      <artifactId>spring-webmvc</artifactId>
50
    </dependency>
51
    <dependency>
52
      <groupId>org.springframework</groupId>
53
      <artifactId>spring-web</artifactId>
54
    </dependency>
55
    <dependency>
56
      <groupId>cglib</groupId>
57
      <artifactId>cglib-full</artifactId>
58
    </dependency>
59
    <dependency>
60
      <groupId>commons-lang</groupId>
61
      <artifactId>commons-lang</artifactId>
62
    </dependency>
63
    <dependency>
64
      <groupId>commons-collections</groupId>
65
      <artifactId>commons-collections</artifactId>
66
    </dependency>
67
    <dependency>
68
      <groupId>net.sf.ezmorph</groupId>
69
      <artifactId>ezmorph</artifactId>
70
    </dependency>
71
    <dependency>
72
      <groupId>commons-beanutils</groupId>
73
      <artifactId>commons-beanutils</artifactId>
74
    </dependency>
75
    <dependency>
76
      <groupId>sojo</groupId>
77
      <artifactId>sojo-optional</artifactId>
78
    </dependency>
79
    <dependency>
80
      <groupId>net.sf.json-lib</groupId>
81
      <artifactId>json-lib</artifactId>
82
    </dependency>
83
    <dependency>
84
      <groupId>javax.servlet</groupId>
85
      <artifactId>servlet-api</artifactId>
86
    </dependency>
87
  </dependencies>
88
  <reporting>
89
    <plugins>
90
      <plugin>
91
        <artifactId>maven-project-info-reports-plugin</artifactId>
92
        <reportSets>
93
          <reportSet>
94
            <reports>
95
              <report>project-team</report>
96
              <report>license</report>
97
            </reports>
98
          </reportSet>
99
        </reportSets>
100
      </plugin>
101
      <plugin>
102
        <artifactId>maven-javadoc-plugin</artifactId>
103
      </plugin>
104
      <plugin>
105
        <artifactId>maven-jxr-plugin</artifactId>
106
      </plugin>
107
    </plugins>
108
  </reporting>
109
  
110
</project>
(3-3/3)