blob: bff2e2b7449cc97b1f8ea1780cf4e8ca464b5027 [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>
11 <version>0.2.3-SNAPSHOT</version>
12 </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>
25 <source>1.6</source>
26 <target>1.6</target>
27 </configuration>
28 </plugin>
29 <plugin>
30 <artifactId>maven-assembly-plugin</artifactId>
31 <configuration>
32 <descriptorRefs>
33 <descriptorRef>jar-with-dependencies</descriptorRef>
34 </descriptorRefs>
35 </configuration>
36 <executions>
37 <execution>
38 <id>make-my-jar-with-dependencies</id>
39 <phase>package</phase>
40 <goals>
41 <goal>single</goal>
42 </goals>
43 </execution>
44 </executions>
45 </plugin>
46 <plugin>
47 <groupId>org.codehaus.mojo</groupId>
48 <artifactId>appassembler-maven-plugin</artifactId>
49 <executions>
50 <execution>
51 <configuration>
52 <programs>
53 <program>
54 <mainClass>edu.uci.ics.maxclique.Driver</mainClass>
55 <name>maxclique</name>
56 </program>
57 </programs>
58 <repositoryLayout>flat</repositoryLayout>
59 <repositoryName>lib</repositoryName>
60 </configuration>
61 <phase>package</phase>
62 <goals>
63 <goal>assemble</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-surefire-plugin</artifactId>
71 <version>2.7.2</version>
72 <configuration>
73 <forkMode>pertest</forkMode>
74 <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m
75 -Dfile.encoding=UTF-8
76 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
77 <includes>
78 <include>**/*TestSuite.java</include>
79 <include>**/*Test.java</include>
80 </includes>
81 </configuration>
82 </plugin>
83 <plugin>
84 <artifactId>maven-clean-plugin</artifactId>
85 <configuration>
86 <filesets>
87 <fileset>
88 <directory>.</directory>
89 <includes>
90 <include>teststore*</include>
91 <include>edu*</include>
zhangnan2920214@gmail.come0cb1ca2013-01-29 02:40:02 +000092 <include>build*</include>
93 <include>log*</include>
94 <include>ClusterController*</include>
95 </includes>
96 </fileset>
97 </filesets>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
102
103 <dependencies>
104 <dependency>
105 <groupId>junit</groupId>
106 <artifactId>junit</artifactId>
107 <version>4.8.1</version>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.hadoop</groupId>
112 <artifactId>hadoop-core</artifactId>
113 <version>0.20.2</version>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.hadoop</groupId>
118 <artifactId>hadoop-test</artifactId>
119 <version>0.20.2</version>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>com.kenai.nbpwr</groupId>
124 <artifactId>org-apache-commons-io</artifactId>
125 <version>1.3.1-201002241208</version>
126 <type>nbm</type>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.slf4j</groupId>
131 <artifactId>slf4j-jcl</artifactId>
132 <version>1.6.3</version>
133 </dependency>
134 <dependency>
135 <groupId>org.slf4j</groupId>
136 <artifactId>slf4j-api</artifactId>
137 <version>1.6.3</version>
138 </dependency>
139 <dependency>
140 <groupId>args4j</groupId>
141 <artifactId>args4j</artifactId>
142 <version>2.0.16</version>
143 </dependency>
144 <dependency>
145 <groupId>com.kenai.nbpwr</groupId>
146 <artifactId>org-apache-commons-io</artifactId>
147 <version>1.3.1-201002241208</version>
148 <type>nbm</type>
149 <scope>test</scope>
150 </dependency>
151
152 </dependencies>
153</project>