]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.server/pom.xml
Reset Castor configs properly after bug due to Maven Eclipse plugin
[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>jetty-maven-plugin</artifactId>
29 <configuration>
30 <scanIntervalSeconds>10</scanIntervalSeconds>
31 <contextPath>org.argeo.slc.webapp</contextPath>
32 <useTestClasspath>true</useTestClasspath>
33 <webAppSourceDirectory>
34 ../org.argeo.slc.webapp/src/main/webapp
35 </webAppSourceDirectory>
36 <stopKey>stopKey</stopKey>
37 <stopPort>8081</stopPort>
38 <scanTargetPatterns>
39 <scanTargetPattern>
40 <directory>
41 ../org.argeo.slc.webapp/src/main/webapp
42 </directory>
43 <includes>
44 <include>**/*.xml</include>
45 <include>**/*.properties</include>
46 </includes>
47 </scanTargetPattern>
48 </scanTargetPatterns>
49 </configuration>
50 </plugin>
51
52 </plugins>
53 </build>
54 <dependencies>
55 <dependency>
56 <groupId>org.argeo.slc</groupId>
57 <artifactId>argeo-slc-core</artifactId>
58 <version>${project.version}</version>
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</groupId>
71 <artifactId>spring-webmvc</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>javax.servlet</groupId>
75 <artifactId>servlet-api</artifactId>
76 <scope>compile</scope>
77 </dependency>
78 <dependency>
79 <groupId>c3p0</groupId>
80 <artifactId>c3p0</artifactId>
81 </dependency>
82 </dependencies>
83 </project>