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