blob: b1e20c01de8f1ddd30efa60ca42f6904274d08ad [file] [log] [blame]
buyingyib3722a02013-01-09 07:17:10 +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-core</artifactId>
6 <name>genomix-core</name>
7
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>genomix</artifactId>
11 <version>0.2.3-SNAPSHOT</version>
12 </parent>
buyingyib3722a02013-01-09 07:17:10 +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 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>appassembler-maven-plugin</artifactId>
32 <executions>
33 <execution>
34 <configuration>
35 <programs>
36 <program>
37 <mainClass>edu.uci.ics.genomix.Driver</mainClass>
38 <name>genomix</name>
39 </program>
40 </programs>
41 <repositoryLayout>flat</repositoryLayout>
42 <repositoryName>lib</repositoryName>
43 </configuration>
44 <phase>package</phase>
45 <goals>
46 <goal>assemble</goal>
47 </goals>
48 </execution>
49 </executions>
50 </plugin>
51 <plugin>
52 <artifactId>maven-assembly-plugin</artifactId>
53 <version>2.2-beta-5</version>
54 <executions>
55 <execution>
56 <configuration>
57 <descriptors>
58 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
59 </descriptors>
60 </configuration>
61 <phase>package</phase>
62 <goals>
63 <goal>attached</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>
92 <include>actual*</include>
93 <include>build*</include>
94 <include>expect*</include>
95 <include>ClusterController*</include>
96 </includes>
97 </fileset>
98 </filesets>
99 </configuration>
100 </plugin>
jianfeng.jia@gmail.com71e4fce2013-01-10 03:20:55 +0000101 <plugin>
102 <artifactId>maven-resources-plugin</artifactId>
103 <version>2.5</version>
104 <executions>
105 <execution>
106 <id>copy-scripts</id>
107 <!-- here the phase you need -->
108 <phase>package</phase>
109 <goals>
110 <goal>copy-resources</goal>
111 </goals>
112 <configuration>
113 <outputDirectory>target/appassembler/bin</outputDirectory>
114 <resources>
115 <resource>
116 <directory>src/main/resources/scripts</directory>
117 </resource>
118 </resources>
119 </configuration>
120 </execution>
121 <execution>
122 <id>copy-conf</id>
123 <!-- here the phase you need -->
124 <phase>package</phase>
125 <goals>
126 <goal>copy-resources</goal>
127 </goals>
128 <configuration>
129 <outputDirectory>target/appassembler/conf</outputDirectory>
130 <resources>
131 <resource>
132 <directory>src/main/resources/conf</directory>
133 </resource>
134 </resources>
135 </configuration>
136 </execution>
137 </executions>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-resources-plugin</artifactId>
142 <version>2.6</version>
143 </plugin>
buyingyib3722a02013-01-09 07:17:10 +0000144 </plugins>
145 </build>
146
buyingyib3722a02013-01-09 07:17:10 +0000147 <dependencies>
148 <dependency>
149 <groupId>junit</groupId>
150 <artifactId>junit</artifactId>
151 <version>4.8.1</version>
152 <scope>test</scope>
153 </dependency>
154 <dependency>
155 <groupId>edu.uci.ics.hyracks</groupId>
156 <artifactId>hyracks-dataflow-std</artifactId>
157 <version>0.2.3-SNAPSHOT</version>
158 <type>jar</type>
159 <scope>compile</scope>
160 </dependency>
161 <dependency>
162 <groupId>edu.uci.ics.hyracks</groupId>
163 <artifactId>hyracks-api</artifactId>
164 <version>0.2.3-SNAPSHOT</version>
165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 <dependency>
169 <groupId>edu.uci.ics.hyracks</groupId>
170 <artifactId>hyracks-dataflow-common</artifactId>
171 <version>0.2.3-SNAPSHOT</version>
172 <type>jar</type>
173 <scope>compile</scope>
174 </dependency>
175 <dependency>
176 <groupId>edu.uci.ics.hyracks</groupId>
177 <artifactId>hyracks-data-std</artifactId>
178 <version>0.2.3-SNAPSHOT</version>
179 </dependency>
180 <dependency>
181 <groupId>edu.uci.ics.hyracks</groupId>
182 <artifactId>hyracks-control-cc</artifactId>
183 <version>0.2.3-SNAPSHOT</version>
184 <type>jar</type>
185 <scope>compile</scope>
186 </dependency>
187 <dependency>
188 <groupId>edu.uci.ics.hyracks</groupId>
189 <artifactId>hyracks-control-nc</artifactId>
190 <version>0.2.3-SNAPSHOT</version>
191 <type>jar</type>
192 <scope>compile</scope>
193 </dependency>
194 <dependency>
195 <groupId>com.kenai.nbpwr</groupId>
196 <artifactId>org-apache-commons-io</artifactId>
197 <version>1.3.1-201002241208</version>
198 <type>nbm</type>
199 <scope>test</scope>
200 </dependency>
201 <dependency>
202 <groupId>edu.uci.ics.hyracks.examples</groupId>
203 <artifactId>hyracks-integration-tests</artifactId>
204 <version>0.2.3-SNAPSHOT</version>
205 <scope>test</scope>
206 </dependency>
207 <dependency>
208 <groupId>edu.uci.ics.hyracks</groupId>
209 <artifactId>hyracks-ipc</artifactId>
210 <version>0.2.3-SNAPSHOT</version>
211 <type>jar</type>
212 <scope>compile</scope>
213 </dependency>
214 </dependencies>
jianfeng.jia@gmail.com83f4ee52013-01-29 08:09:24 +0000215</project>