blob: 969d8cb4d156c92a8cb05b83799983ba63b68407 [file] [log] [blame]
vinayakb30ba3d32010-07-29 22:41:55 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks</groupId>
4 <artifactId>hyracks-server</artifactId>
5 <version>0.0.5-SNAPSHOT</version>
6 <build>
7 <plugins>
8 <plugin>
9 <groupId>org.apache.maven.plugins</groupId>
10 <artifactId>maven-compiler-plugin</artifactId>
11 <version>2.0.2</version>
12 <configuration>
13 <source>1.6</source>
14 <target>1.6</target>
15 </configuration>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-surefire-plugin</artifactId>
20 <configuration>
21 <forkMode>pertest</forkMode>
22 <argLine>-enableassertions</argLine>
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.hyracks.driver.CCDriver</mainClass>
34 <name>hyrackscc</name>
35 </program>
36 <program>
37 <mainClass>edu.uci.ics.hyracks.driver.NCDriver</mainClass>
38 <name>hyracksnc</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>
vinayakb30ba3d32010-07-29 22:41:55 +000059 </descriptors>
60 </configuration>
61 <phase>package</phase>
62 <goals>
63 <goal>attached</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 </plugins>
69 </build>
70 <dependencies>
71 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <version>4.8.1</version>
75 <type>jar</type>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>edu.uci.ics.hyracks</groupId>
80 <artifactId>hyracks-dataflow-std</artifactId>
81 <version>0.1.0</version>
82 <type>jar</type>
83 <scope>compile</scope>
84 </dependency>
85 <dependency>
86 <groupId>edu.uci.ics.hyracks</groupId>
vinayakbd38ba512010-07-29 22:53:25 +000087 <artifactId>hyracks-runtime</artifactId>
vinayakb30ba3d32010-07-29 22:41:55 +000088 <version>0.1.0</version>
89 <type>jar</type>
90 <scope>compile</scope>
91 </dependency>
92 </dependencies>
93</project>