(no commit message)
[utils] / crawler / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4   <parent>
5     <groupId>org.wamblee</groupId>
6     <artifactId>utils</artifactId>
7     <version>0.2-SNAPSHOT</version>
8   </parent>
9   <modelVersion>4.0.0</modelVersion>
10   <groupId>org.wamblee</groupId>
11   <artifactId>crawler</artifactId>
12   <packaging>pom</packaging>
13   <version>0.2-SNAPSHOT</version>
14   <name>wamblee.org KiSS crawler all</name>
15   <url>http://wamblee.org</url>
16   <modules>
17     <module>basic</module>
18     <module>kiss</module>
19     <module>kissweb</module>
20   </modules>
21   <dependencies>
22   </dependencies>
23   
24   <dependencyManagement>
25     <dependencies>
26       <dependency>
27         <groupId>org.wamblee</groupId>
28         <artifactId>crawler-basic</artifactId>
29         <version>${project.version}</version>
30       </dependency>    
31       <dependency>
32         <groupId>org.wamblee</groupId>
33         <artifactId>crawler-kiss</artifactId>
34         <version>${project.version}</version>
35       </dependency>
36
37     </dependencies>   
38   </dependencyManagement>
39   
40   <build>
41     <plugins>
42       <plugin>
43         <artifactId>maven-assembly-plugin</artifactId>
44         <version>2.1</version>
45         <configuration>
46                   <descriptors>
47             <descriptor>kiss-application.xml</descriptor>
48                   </descriptors>
49         
50         </configuration>
51       </plugin>
52      </plugins>
53   </build>
54
55 </project>