blob: fe83c3c3ebb76d87a4f664d3b05bce4cee20b077 [file] [log] [blame]
zhangnan2920214@gmail.come0cb1ca2013-01-29 02:40:02 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" 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 <modelVersion>4.0.0</modelVersion>
jianfeng.jia@gmail.com83f4ee52013-01-29 08:09:24 +00005 <artifactId>genomix-hadoop</artifactId>
6 <name>genomix-hadoop</name>
7
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>genomix</artifactId>
buyingyi9e6792f2013-04-25 14:21:07 -070011 <version>0.2.6-SNAPSHOT</version>
jianfeng.jia@gmail.com83f4ee52013-01-29 08:09:24 +000012 </parent>
zhangnan2920214@gmail.come0cb1ca2013-01-29 02:40:02 +000013
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>2.0.2</version>
24 <configuration>
hadoop4163db22013-04-21 17:04:06 -070025 <source>1.7</source>
26 <target>1.7</target>
27 <fork>true</fork>
zhangnan2920214@gmail.come0cb1ca2013-01-29 02:40:02 +000028 </configuration>
29 </plugin>
30 <plugin>
31 <artifactId>maven-assembly-plugin</artifactId>
32 <configuration>
33 <descriptorRefs>
34 <descriptorRef>jar-with-dependencies</descriptorRef>
35 </descriptorRefs>
36 </configuration>
37 <executions>
38 <execution>
39 <id>make-my-jar-with-dependencies</id>
40 <phase>package</phase>
41 <goals>
42 <goal>single</goal>
43 </goals>
44 </execution>
45 </executions>
46 </plugin>
47 <plugin>
48 <groupId>org.codehaus.mojo</groupId>
49 <artifactId>appassembler-maven-plugin</artifactId>
50 <executions>
51 <execution>
52 <configuration>
53 <programs>
54 <program>
55 <mainClass>edu.uci.ics.maxclique.Driver</mainClass>
56 <name>maxclique</name>
57 </program>
58 </programs>
59 <repositoryLayout>flat</repositoryLayout>
60 <repositoryName>lib</repositoryName>
61 </configuration>
62 <phase>package</phase>
63 <goals>
64 <goal>assemble</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-surefire-plugin</artifactId>
72 <version>2.7.2</version>
73 <configuration>
74 <forkMode>pertest</forkMode>
75 <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m
76 -Dfile.encoding=UTF-8
77 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
78 <includes>
79 <include>**/*TestSuite.java</include>
80 <include>**/*Test.java</include>
81 </includes>
82 </configuration>
83 </plugin>
84 <plugin>
85 <artifactId>maven-clean-plugin</artifactId>
86 <configuration>
87 <filesets>
88 <fileset>
89 <directory>.</directory>
90 <includes>
91 <include>teststore*</include>
92 <include>edu*</include>
zhangnan2920214@gmail.come0cb1ca2013-01-29 02:40:02 +000093 <include>build*</include>
94 <include>log*</include>
95 <include>ClusterController*</include>
96 </includes>
97 </fileset>
98 </filesets>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
103
104 <dependencies>
105 <dependency>
106 <groupId>junit</groupId>
107 <artifactId>junit</artifactId>
108 <version>4.8.1</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.hadoop</groupId>
113 <artifactId>hadoop-core</artifactId>
114 <version>0.20.2</version>
115 <scope>compile</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.apache.hadoop</groupId>
119 <artifactId>hadoop-test</artifactId>
120 <version>0.20.2</version>
121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>com.kenai.nbpwr</groupId>
125 <artifactId>org-apache-commons-io</artifactId>
126 <version>1.3.1-201002241208</version>
127 <type>nbm</type>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.slf4j</groupId>
132 <artifactId>slf4j-jcl</artifactId>
133 <version>1.6.3</version>
134 </dependency>
135 <dependency>
136 <groupId>org.slf4j</groupId>
137 <artifactId>slf4j-api</artifactId>
138 <version>1.6.3</version>
139 </dependency>
140 <dependency>
141 <groupId>args4j</groupId>
142 <artifactId>args4j</artifactId>
143 <version>2.0.16</version>
144 </dependency>
145 <dependency>
146 <groupId>com.kenai.nbpwr</groupId>
147 <artifactId>org-apache-commons-io</artifactId>
148 <version>1.3.1-201002241208</version>
149 <type>nbm</type>
150 <scope>test</scope>
151 </dependency>
zhangnan2920214@gmail.com96f2a1f2013-03-09 00:24:51 +0000152 <dependency>
153 <groupId>edu.uci.ics.hyracks</groupId>
154 <artifactId>genomix-data</artifactId>
buyingyi9e6792f2013-04-25 14:21:07 -0700155 <version>0.2.6-SNAPSHOT</version>
zhangnan2920214@gmail.com96f2a1f2013-03-09 00:24:51 +0000156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
zhangnan2920214@gmail.come0cb1ca2013-01-29 02:40:02 +0000159 </dependencies>
160</project>