blob: 8500228280546032e0786b533821c4f9ca3134b0 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb5ee049d2013-04-06 21:21:29 +000015<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">
16 <modelVersion>4.0.0</modelVersion>
17 <artifactId>asterix-server</artifactId>
18 <name>asterix-server</name>
19 <parent>
20 <groupId>edu.uci.ics.asterix</groupId>
21 <artifactId>asterix</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070022 <version>0.8.1-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000023 </parent>
24
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.codehaus.mojo</groupId>
29 <artifactId>appassembler-maven-plugin</artifactId>
30 <version>1.3</version>
zheilbron01b0b632013-06-20 17:46:30 -070031 <configuration>
32 <assembleDirectory>
33 ${project.build.directory}/generated-resources/appassembler
34 </assembleDirectory>
35 <daemons>
36 <daemon>
37 <id>asterixcc</id>
38 <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass>
39 <platforms>
40 <platform>booter-unix</platform>
41 <platform>booter-windows</platform>
42 </platforms>
43 <commandLineArguments>
44 <commandLineArgument>-app-cc-main-class</commandLineArgument>
45 <commandLineArgument>edu.uci.ics.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument>
46 </commandLineArguments>
47 </daemon>
48 <daemon>
49 <id>asterixnc</id>
50 <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass>
51 <platforms>
52 <platform>booter-unix</platform>
53 <platform>booter-windows</platform>
54 </platforms>
55 <commandLineArguments>
56 <commandLineArgument>-app-nc-main-class</commandLineArgument>
57 <commandLineArgument>edu.uci.ics.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument>
58 </commandLineArguments>
59 </daemon>
60 </daemons>
61 </configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000062 <executions>
63 <execution>
vinayakb5ee049d2013-04-06 21:21:29 +000064 <goals>
zheilbron01b0b632013-06-20 17:46:30 -070065 <goal>generate-daemons</goal>
66 <goal>create-repository</goal>
vinayakb5ee049d2013-04-06 21:21:29 +000067 </goals>
68 </execution>
69 </executions>
70 </plugin>
71 <plugin>
72 <artifactId>maven-assembly-plugin</artifactId>
73 <version>2.2-beta-5</version>
74 <executions>
75 <execution>
76 <configuration>
77 <descriptors>
78 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
79 </descriptors>
80 </configuration>
81 <phase>package</phase>
82 <goals>
83 <goal>attached</goal>
84 </goals>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
90 <dependencies>
91 <dependency>
92 <groupId>edu.uci.ics.hyracks</groupId>
93 <artifactId>hyracks-control-cc</artifactId>
94 <type>jar</type>
95 <scope>compile</scope>
96 </dependency>
97 <dependency>
98 <groupId>edu.uci.ics.hyracks</groupId>
99 <artifactId>hyracks-control-nc</artifactId>
100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>edu.uci.ics.asterix</groupId>
105 <artifactId>asterix-app</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700106 <version>0.8.1-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000107 </dependency>
zheilbron01b0b632013-06-20 17:46:30 -0700108 <dependency>
109 <groupId>org.codehaus.mojo.appassembler</groupId>
110 <artifactId>appassembler-booter</artifactId>
111 <version>1.3.1</version>
112 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000113 </dependencies>
114</project>