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