0a03cbdb74bfff750033dc48adc0f777d26cfd3c
[utils] / crawler / kissweb / 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
5   <parent>
6     <groupId>org.wamblee</groupId>
7     <artifactId>wamblee-crawler</artifactId>
8     <version>0.2-SNAPSHOT</version>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <groupId>org.wamblee</groupId>
13   <artifactId>wamblee-crawler-kissweb</artifactId>
14   <packaging>war</packaging>
15   <name>wamblee.org KiSS crawler web interface </name>
16   <url>http://wamblee.org</url>
17   
18   <dependencies>
19     <dependency>
20         <groupId>org.wamblee</groupId>
21         <artifactId>wamblee-crawler-kiss</artifactId>
22     </dependency>
23         <dependency>
24           <groupId>quartz</groupId>
25           <artifactId>quartz</artifactId>
26         </dependency>
27         <dependency>
28           <groupId>javax.servlet</groupId>
29           <artifactId>servlet-api</artifactId>
30         </dependency>
31         <dependency>
32           <groupId>jstl</groupId>
33           <artifactId>jstl</artifactId>
34         </dependency>
35         <dependency>
36           <groupId>taglibs</groupId>
37           <artifactId>standard</artifactId>
38         </dependency>
39
40   </dependencies>
41
42   <build>
43     <plugins>
44        <plugin>
45           <groupId>org.apache.maven.plugins</groupId>
46           <artifactId>maven-war-plugin</artifactId>
47           <configuration>
48                 <webXml>${basedir}/src/webapp/WEB-INF/web.xml</webXml>
49                 <warName>wamblee-crawler-kissweb</warName>
50                 <warSourceDirectory>src/webapp</warSourceDirectory>
51           </configuration>
52         </plugin>
53     </plugins>
54   </build>
55
56 </project>