(no commit message)
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Fri, 1 Sep 2006 22:52:55 +0000 (22:52 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Fri, 1 Sep 2006 22:52:55 +0000 (22:52 +0000)
crawler/basic/pom.xml [new file with mode: 0644]
crawler/pom.xml [new file with mode: 0644]

diff --git a/crawler/basic/pom.xml b/crawler/basic/pom.xml
new file mode 100644 (file)
index 0000000..c354439
--- /dev/null
@@ -0,0 +1,42 @@
+<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-basic</artifactId>
+  <packaging>jar</packaging>
+  <name>wamblee.org basic crawler framework</name>
+  <url>http://wamblee.org</url>
+  <dependencies>
+    <dependency>
+        <groupId>org.wamblee</groupId>
+        <artifactId>support</artifactId>
+    </dependency>
+
+    <dependency>
+        <groupId>commons-httpclient</groupId>
+        <artifactId>commons-httpclient</artifactId>
+    </dependency>  
+    <dependency>
+      <groupId>jtidy</groupId>
+      <artifactId>jtidy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xerces</artifactId>
+    </dependency>
+
+  </dependencies>
+
+</project>
diff --git a/crawler/pom.xml b/crawler/pom.xml
new file mode 100644 (file)
index 0000000..51deef7
--- /dev/null
@@ -0,0 +1,31 @@
+<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>utils</artifactId>
+    <version>0.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.wamblee</groupId>
+  <artifactId>crawler</artifactId>
+  <packaging>pom</packaging>
+  <version>0.2-SNAPSHOT</version>
+  <name>wamblee.org KiSS crawler</name>
+  <url>http://wamblee.org</url>
+  <modules>
+    <module>basic</module>
+    <!-- module>kiss</module -->
+    <!-- module>kissweb</module -->
+  </modules>
+  <dependencies>
+  </dependencies>
+  
+  <dependencyManagement>
+    <dependencies>
+     
+
+    </dependencies>   
+  </dependencyManagement>
+
+</project>