(no commit message)
[cdmlib.git] / spring-json / pom.xml
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.1.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-nodep</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 <version>2.2</version>
83 <classifier>jdk15</classifier>
84 </dependency>
85 <dependency>
86 <groupId>javax.servlet</groupId>
87 <artifactId>servlet-api</artifactId>
88 </dependency>
89 </dependencies>
90 <reporting>
91 <plugins>
92 <plugin>
93 <artifactId>maven-project-info-reports-plugin</artifactId>
94 <reportSets>
95 <reportSet>
96 <reports>
97 <report>project-team</report>
98 <report>license</report>
99 </reports>
100 </reportSet>
101 </reportSets>
102 </plugin>
103 <plugin>
104 <artifactId>maven-javadoc-plugin</artifactId>
105 </plugin>
106 <plugin>
107 <artifactId>maven-jxr-plugin</artifactId>
108 </plugin>
109 </plugins>
110 </reporting>
111
112 </project>