]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.server/pom.xml
Add TreeTestResultCollection Castor mapping
[gpl/argeo-slc.git] / org.argeo.slc.server / 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <groupId>org.argeo.slc</groupId>
8 <artifactId>argeo-slc</artifactId>
9 <version>0.9-SNAPSHOT</version>
10 <relativePath>../org.argeo.slc</relativePath>
11 </parent>
12 <artifactId>argeo-slc-server</artifactId>
13 <name>Argeo SLC Server</name>
14 <description>SLC Server</description>
15 <build>
16 <plugins>
17 <!-- Look to parent pom for inheritances -->
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-source-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.mortbay.jetty</groupId>
28 <artifactId>maven-jetty-plugin</artifactId>
29 <configuration>
30 <webAppSourceDirectory>
31 ../org.argeo.slc.webapp/src/main/webapp
32 </webAppSourceDirectory>
33 </configuration>
34 </plugin>
35 </plugins>
36 </build>
37 <dependencies>
38 <dependency>
39 <groupId>org.argeo.slc</groupId>
40 <artifactId>argeo-slc-core</artifactId>
41 <version>${project.version}</version>
42 <exclusions>
43 <exclusion>
44 <groupId>xerces</groupId>
45 <artifactId>xercesImpl</artifactId>
46 </exclusion>
47 </exclusions>
48 </dependency>
49 <dependency>
50 <groupId>org.argeo.slc</groupId>
51 <artifactId>argeo-slc-hibernate</artifactId>
52 <version>${project.version}</version>
53 <exclusions>
54 <exclusion>
55 <groupId>xerces</groupId>
56 <artifactId>xercesImpl</artifactId>
57 </exclusion>
58 </exclusions>
59 </dependency>
60
61 <dependency>
62 <groupId>javax.servlet</groupId>
63 <artifactId>jstl</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>taglibs</groupId>
67 <artifactId>standard</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework.ws</groupId>
71 <artifactId>spring-ws-core</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.springframework</groupId>
75 <artifactId>spring-webmvc</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.springframework</groupId>
79 <artifactId>spring-aop</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>javax.servlet</groupId>
83 <artifactId>servlet-api</artifactId>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>c3p0</groupId>
88 <artifactId>c3p0</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.aspectj</groupId>
92 <artifactId>aspectjweaver</artifactId>
93 </dependency>
94 </dependencies>
95 </project>