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