blob: 213da7f987e45b66c2e919bbc58abe69fc6a8494 [file] [log] [blame]
vinayakb847471c2010-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>
vinayakb47714bf2010-07-30 19:49:53 +000033 <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass>
vinayakb847471c2010-07-29 22:41:55 +000034 <name>hyrackscc</name>
35 </program>
36 <program>
vinayakb47714bf2010-07-30 19:49:53 +000037 <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass>
vinayakb847471c2010-07-29 22:41:55 +000038 <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>
vinayakb847471c2010-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>
vinayakbaaaaf872010-07-29 22:53:25 +000087 <artifactId>hyracks-runtime</artifactId>
vinayakb847471c2010-07-29 22:41:55 +000088 <version>0.1.0</version>
89 <type>jar</type>
90 <scope>compile</scope>
91 </dependency>
vinayakbbff7ad3a2010-07-31 01:03:58 +000092 <dependency>
93 <groupId>edu.uci.ics.hyracks</groupId>
94 <artifactId>hyracks-control-cc</artifactId>
95 <version>0.1.0</version>
96 <type>jar</type>
97 <scope>compile</scope>
98 </dependency>
vinayakb847471c2010-07-29 22:41:55 +000099 </dependencies>
100</project>