From ed1bdd4980006f2d76ad92f17842631402292efd Mon Sep 17 00:00:00 2001 From: erik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0> Date: Fri, 1 Sep 2006 22:52:55 +0000 Subject: [PATCH] --- branches/TO_MAVEN/crawler/basic/pom.xml | 42 +++++++++++++++++++++++++ branches/TO_MAVEN/crawler/pom.xml | 31 ++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 branches/TO_MAVEN/crawler/basic/pom.xml create mode 100644 branches/TO_MAVEN/crawler/pom.xml diff --git a/branches/TO_MAVEN/crawler/basic/pom.xml b/branches/TO_MAVEN/crawler/basic/pom.xml new file mode 100644 index 00000000..c3544398 --- /dev/null +++ b/branches/TO_MAVEN/crawler/basic/pom.xml @@ -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/branches/TO_MAVEN/crawler/pom.xml b/branches/TO_MAVEN/crawler/pom.xml new file mode 100644 index 00000000..51deef7d --- /dev/null +++ b/branches/TO_MAVEN/crawler/pom.xml @@ -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> -- 2.31.1