(no commit message)
[utils] / crawler / kissweb / pom.xml
diff --git a/crawler/kissweb/pom.xml b/crawler/kissweb/pom.xml
new file mode 100644 (file)
index 0000000..a13b894
--- /dev/null
@@ -0,0 +1,56 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+  <parent>
+    <groupId>org.wamblee</groupId>
+    <artifactId>crawler</artifactId>
+    <version>0.2-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.wamblee</groupId>
+  <artifactId>crawler-kissweb</artifactId>
+  <packaging>war</packaging>
+  <name>wamblee.org basic crawler framework</name>
+  <url>http://wamblee.org</url>
+  
+  <dependencies>
+    <dependency>
+        <groupId>org.wamblee</groupId>
+        <artifactId>crawler-kiss</artifactId>
+    </dependency>
+       <dependency>
+         <groupId>quartz</groupId>
+         <artifactId>quartz</artifactId>
+       </dependency>
+       <dependency>
+         <groupId>javax.servlet</groupId>
+         <artifactId>servlet-api</artifactId>
+       </dependency>
+        <dependency>
+          <groupId>jstl</groupId>
+          <artifactId>jstl</artifactId>
+        </dependency>
+        <dependency>
+          <groupId>taglibs</groupId>
+          <artifactId>standard</artifactId>
+        </dependency>
+
+  </dependencies>
+
+  <build>
+       <plugins>
+       <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-war-plugin</artifactId>
+          <configuration>
+               <webXml>${basedir}/src/webapp/WEB-INF/web.xml</webXml>
+               <warName>wamblee-crawler-kissweb</warName>
+               <warSourceDirectory>src/webapp</warSourceDirectory>
+          </configuration>
+       </plugin>
+       </plugins>
+  </build>
+
+</project>