blob: ffb03c561b3cf587d9fe14402d62201c213e1b01 [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>
59 <descriptor>src/main/assembly/source-assembly.xml</descriptor>
60 </descriptors>
61 </configuration>
62 <phase>package</phase>
63 <goals>
64 <goal>attached</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 </plugins>
70 </build>
71 <dependencies>
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
75 <version>4.8.1</version>
76 <type>jar</type>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>edu.uci.ics.hyracks</groupId>
81 <artifactId>hyracks-dataflow-std</artifactId>
82 <version>0.1.0</version>
83 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>edu.uci.ics.hyracks</groupId>
vinayakbd38ba512010-07-29 22:53:25 +000088 <artifactId>hyracks-runtime</artifactId>
vinayakb30ba3d32010-07-29 22:41:55 +000089 <version>0.1.0</version>
90 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 </dependencies>
94</project>