]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
b370913ed9eefffb3848bfe65e27b67271d6c034
[gpl/argeo-slc.git] / 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 <version>6.1.9</version>
30 <configuration>
31 <scanIntervalSeconds>10</scanIntervalSeconds>
32 <contextPath>org.argeo.slc.webapp</contextPath>
33 <useTestClasspath>true</useTestClasspath>
34 <webAppSourceDirectory>
35 ../org.argeo.slc.webapp/src/main/webapp
36 </webAppSourceDirectory>
37 <stopKey>stopKey</stopKey>
38 <stopPort>8081</stopPort>
39 <scanTargetPatterns>
40 <scanTargetPattern>
41 <directory>
42 ../org.argeo.slc.webapp/src/main/webapp
43 </directory>
44 <includes>
45 <include>**/*.xml</include>
46 <include>**/*.properties</include>
47 </includes>
48 </scanTargetPattern>
49 </scanTargetPatterns>
50 </configuration>
51 </plugin>
52
53 </plugins>
54 </build>
55 <dependencies>
56 <dependency>
57 <groupId>org.argeo.slc</groupId>
58 <artifactId>argeo-slc-core</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>javax.servlet</groupId>
64 <artifactId>jstl</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>taglibs</groupId>
68 <artifactId>standard</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.springframework</groupId>
72 <artifactId>spring-webmvc</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>javax.servlet</groupId>
76 <artifactId>servlet-api</artifactId>
77 <scope>provided</scope>
78 </dependency>
79 <dependency>
80 <groupId>c3p0</groupId>
81 <artifactId>c3p0</artifactId>
82 </dependency>
83 </dependencies>
84 </project>