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