(no commit message)
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 2 Sep 2006 16:23:19 +0000 (16:23 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 2 Sep 2006 16:23:19 +0000 (16:23 +0000)
crawler/kissweb/pom.xml [new file with mode: 0644]
crawler/pom.xml
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>
index 764eda420f57eb395b78824fbd16d39c2809f698..c0b973ee16edd3182066748c4f6f7fc30851d8a6 100644 (file)
@@ -16,7 +16,7 @@
   <modules>
     <module>basic</module>
     <module>kiss</module>
-    <!-- module>kissweb</module -->
+    <module>kissweb</module>
   </modules>
   <dependencies>
   </dependencies>
diff --git a/pom.xml b/pom.xml
index 300f2b11f756c3d4137b98fe1574186ecb37e5c0..a04d09ecf14e09f341c2b9ed8eb9bd3115f49511 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -11,6 +11,7 @@
   <modules>
     <module>support</module>
     <module>socketproxy</module>
+    <module>crawler</module>
   </modules>
   <dependencies>
     <dependency>