blob: a06580032be516e9f30901720501cdbf5a76a030 [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>
5 <groupId>edu.uci.ics.hyracks</groupId>
6 <artifactId>genomix</artifactId>
7 <version>0.2.3-SNAPSHOT</version>
buyingyib3722a02013-01-09 07:17:10 +00008 <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 <groupId>org.codehaus.mojo</groupId>
27 <artifactId>appassembler-maven-plugin</artifactId>
28 <executions>
29 <execution>
30 <configuration>
31 <programs>
32 <program>
33 <mainClass>edu.uci.ics.genomix.Driver</mainClass>
34 <name>genomix</name>
35 </program>
36 </programs>
37 <repositoryLayout>flat</repositoryLayout>
38 <repositoryName>lib</repositoryName>
39 </configuration>
40 <phase>package</phase>
41 <goals>
42 <goal>assemble</goal>
43 </goals>
44 </execution>
45 </executions>
46 </plugin>
47 <plugin>
48 <artifactId>maven-assembly-plugin</artifactId>
49 <version>2.2-beta-5</version>
50 <executions>
51 <execution>
52 <configuration>
53 <descriptors>
54 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
55 </descriptors>
56 </configuration>
57 <phase>package</phase>
58 <goals>
59 <goal>attached</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>expect*</include>
91 <include>ClusterController*</include>
92 </includes>
93 </fileset>
94 </filesets>
95 </configuration>
96 </plugin>
jianfeng.jia@gmail.com71e4fce2013-01-10 03:20:55 +000097 <plugin>
98 <artifactId>maven-resources-plugin</artifactId>
99 <version>2.5</version>
100 <executions>
101 <execution>
102 <id>copy-scripts</id>
103 <!-- here the phase you need -->
104 <phase>package</phase>
105 <goals>
106 <goal>copy-resources</goal>
107 </goals>
108 <configuration>
109 <outputDirectory>target/appassembler/bin</outputDirectory>
110 <resources>
111 <resource>
112 <directory>src/main/resources/scripts</directory>
113 </resource>
114 </resources>
115 </configuration>
116 </execution>
117 <execution>
118 <id>copy-conf</id>
119 <!-- here the phase you need -->
120 <phase>package</phase>
121 <goals>
122 <goal>copy-resources</goal>
123 </goals>
124 <configuration>
125 <outputDirectory>target/appassembler/conf</outputDirectory>
126 <resources>
127 <resource>
128 <directory>src/main/resources/conf</directory>
129 </resource>
130 </resources>
131 </configuration>
132 </execution>
133 </executions>
134 </plugin>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-resources-plugin</artifactId>
138 <version>2.6</version>
139 </plugin>
buyingyib3722a02013-01-09 07:17:10 +0000140 </plugins>
141 </build>
142
143 <distributionManagement>
144 <repository>
145 <id>hyracks-releases</id>
146 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url>
147 </repository>
148 <snapshotRepository>
149 <id>hyracks-snapshots</id>
150 <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url>
151 </snapshotRepository>
152 </distributionManagement>
153
154 <repositories>
155 <repository>
156 <id>hyracks-public</id>
157 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
158 </repository>
159 <repository>
160 <id>jboss-public</id>
161 <url>https://repository.jboss.org/nexus/content/groups/public/</url>
162 </repository>
163 </repositories>
164
165 <pluginRepositories>
166 <pluginRepository>
167 <id>hyracks-public</id>
168 <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url>
169 <releases>
170 <updatePolicy>always</updatePolicy>
171 </releases>
172 </pluginRepository>
173 </pluginRepositories>
174
175 <dependencies>
176 <dependency>
177 <groupId>junit</groupId>
178 <artifactId>junit</artifactId>
179 <version>4.8.1</version>
180 <scope>test</scope>
181 </dependency>
182 <dependency>
183 <groupId>edu.uci.ics.hyracks</groupId>
184 <artifactId>hyracks-dataflow-std</artifactId>
185 <version>0.2.3-SNAPSHOT</version>
186 <type>jar</type>
187 <scope>compile</scope>
188 </dependency>
189 <dependency>
190 <groupId>edu.uci.ics.hyracks</groupId>
191 <artifactId>hyracks-api</artifactId>
192 <version>0.2.3-SNAPSHOT</version>
193 <type>jar</type>
194 <scope>compile</scope>
195 </dependency>
196 <dependency>
197 <groupId>edu.uci.ics.hyracks</groupId>
198 <artifactId>hyracks-dataflow-common</artifactId>
199 <version>0.2.3-SNAPSHOT</version>
200 <type>jar</type>
201 <scope>compile</scope>
202 </dependency>
203 <dependency>
204 <groupId>edu.uci.ics.hyracks</groupId>
205 <artifactId>hyracks-data-std</artifactId>
206 <version>0.2.3-SNAPSHOT</version>
207 </dependency>
208 <dependency>
209 <groupId>edu.uci.ics.hyracks</groupId>
210 <artifactId>hyracks-control-cc</artifactId>
211 <version>0.2.3-SNAPSHOT</version>
212 <type>jar</type>
213 <scope>compile</scope>
214 </dependency>
215 <dependency>
216 <groupId>edu.uci.ics.hyracks</groupId>
217 <artifactId>hyracks-control-nc</artifactId>
218 <version>0.2.3-SNAPSHOT</version>
219 <type>jar</type>
220 <scope>compile</scope>
221 </dependency>
222 <dependency>
223 <groupId>com.kenai.nbpwr</groupId>
224 <artifactId>org-apache-commons-io</artifactId>
225 <version>1.3.1-201002241208</version>
226 <type>nbm</type>
227 <scope>test</scope>
228 </dependency>
229 <dependency>
230 <groupId>edu.uci.ics.hyracks.examples</groupId>
231 <artifactId>hyracks-integration-tests</artifactId>
232 <version>0.2.3-SNAPSHOT</version>
233 <scope>test</scope>
234 </dependency>
235 <dependency>
236 <groupId>edu.uci.ics.hyracks</groupId>
237 <artifactId>hyracks-ipc</artifactId>
238 <version>0.2.3-SNAPSHOT</version>
239 <type>jar</type>
240 <scope>compile</scope>
241 </dependency>
242 </dependencies>
243</project>