Migration to maven almost complete. At least everything builds and works
[utils] / crawler / pom.xml
diff --git a/crawler/pom.xml b/crawler/pom.xml
new file mode 100644 (file)
index 0000000..5c88c6c
--- /dev/null
@@ -0,0 +1,55 @@
+<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 all</name>
+  <url>http://wamblee.org</url>
+  <modules>
+    <module>basic</module>
+    <module>kiss</module>
+    <module>kissweb</module>
+  </modules>
+  <dependencies>
+  </dependencies>
+  
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.wamblee</groupId>
+        <artifactId>crawler-basic</artifactId>
+        <version>${project.version}</version>
+      </dependency>    
+      <dependency>
+        <groupId>org.wamblee</groupId>
+        <artifactId>crawler-kiss</artifactId>
+        <version>${project.version}</version>
+      </dependency>
+
+    </dependencies>   
+  </dependencyManagement>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+                 <descriptors>
+            <descriptor>kiss-application.xml</descriptor>
+                 </descriptors>
+        
+        </configuration>
+      </plugin>
+     </plugins>
+  </build>
+
+</project>