]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.server/pom.xml
Improve web services
[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 <scanIntervalSeconds>10</scanIntervalSeconds>
31 <webAppSourceDirectory>
32 ../org.argeo.slc.webapp/src/main/webapp
33 </webAppSourceDirectory>
34 <scanTargetPatterns>
35 <scanTargetPattern>
36 <directory>
37 ../org.argeo.slc.webapp/src/main/webapp
38 </directory>
39 <includes>
40 <include>**/*.xml</include>
41 <include>**/*.properties</include>
42 </includes>
43 </scanTargetPattern>
44 </scanTargetPatterns>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49 <dependencies>
50 <dependency>
51 <groupId>org.argeo.slc</groupId>
52 <artifactId>argeo-slc-core</artifactId>
53 <version>${project.version}</version>
54 <exclusions>
55 <exclusion>
56 <groupId>xerces</groupId>
57 <artifactId>xercesImpl</artifactId>
58 </exclusion>
59 </exclusions>
60 </dependency>
61 <dependency>
62 <groupId>org.argeo.slc</groupId>
63 <artifactId>argeo-slc-hibernate</artifactId>
64 <version>${project.version}</version>
65 <exclusions>
66 <exclusion>
67 <groupId>xerces</groupId>
68 <artifactId>xercesImpl</artifactId>
69 </exclusion>
70 </exclusions>
71 </dependency>
72
73 <dependency>
74 <groupId>javax.servlet</groupId>
75 <artifactId>jstl</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>taglibs</groupId>
79 <artifactId>standard</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.springframework.ws</groupId>
83 <artifactId>spring-ws-core</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.springframework</groupId>
87 <artifactId>spring-webmvc</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>spring-aop</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>javax.servlet</groupId>
95 <artifactId>servlet-api</artifactId>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>c3p0</groupId>
100 <artifactId>c3p0</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>org.aspectj</groupId>
104 <artifactId>aspectjweaver</artifactId>
105 </dependency>
106 </dependencies>
107 </project>