blob: 54d2c0602c5bbdab15a2d91830698a4f7e048157 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +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.examples.compat</groupId>
4 <artifactId>hadoopcompatapp</artifactId>
5 <version>0.2.2-SNAPSHOT</version>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>hadoop-compat-example</artifactId>
10 <version>0.2.2-SNAPSHOT</version>
11 </parent>
12
13 <build>
14 <pluginManagement>
15 <plugins>
16 <plugin>
17 <groupId>org.eclipse.m2e</groupId>
18 <artifactId>lifecycle-mapping</artifactId>
19 <version>1.0.0</version>
20 <configuration>
21 <lifecycleMappingMetadata>
22 <pluginExecutions>
23 <pluginExecution>
24 <pluginExecutionFilter>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-dependency-plugin</artifactId>
27 <versionRange>[1.0.0,)</versionRange>
28 <goals>
29 <goal>copy-dependencies</goal>
30 </goals>
31 </pluginExecutionFilter>
32 <action>
33 <ignore />
34 </action>
35 </pluginExecution>
36 </pluginExecutions>
37 </lifecycleMappingMetadata>
38 </configuration>
39 </plugin>
40 </plugins>
41 </pluginManagement>
42
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-dependency-plugin</artifactId>
47 <executions>
48 <execution>
49 <id>copy-dependencies</id>
50 <phase>package</phase>
51 <goals>
52 <goal>copy-dependencies</goal>
53 </goals>
54 <configuration>
55 <outputDirectory>target/application/lib</outputDirectory>
56 </configuration>
57 </execution>
58 </executions>
59 </plugin>
60 <plugin>
61 <artifactId>maven-assembly-plugin</artifactId>
62 <version>2.2-beta-5</version>
63 <executions>
64 <execution>
65 <configuration>
66 <descriptors>
67 <descriptor>src/main/assembly/app-assembly.xml</descriptor>
68 </descriptors>
69 </configuration>
70 <phase>package</phase>
71 <goals>
72 <goal>attached</goal>
73 </goals>
74 </execution>
75 </executions>
76 </plugin>
77 <plugin>
78 <groupId>edu.uci.ics.hyracks</groupId>
79 <artifactId>hyracks-virtualcluster-maven-plugin</artifactId>
80 <version>0.2.2-SNAPSHOT</version>
81 <configuration>
82 <hyracksServerHome>${basedir}/../../../hyracks-server/target/hyracks-server-${project.version}-binary-assembly</hyracksServerHome>
83 <hyracksCLIHome>${basedir}/../../../hyracks-cli/target/hyracks-cli-${project.version}-binary-assembly</hyracksCLIHome>
84 <jvmOptions>${jvm.extraargs}</jvmOptions>
85 </configuration>
86 <executions>
87 <execution>
88 <id>hyracks-cc-start</id>
89 <phase>pre-integration-test</phase>
90 <goals>
91 <goal>start-cc</goal>
92 </goals>
93 <configuration>
94 <workingDir>${project.build.directory}</workingDir>
95 </configuration>
96 </execution>
97 <execution>
98 <id>hyracks-nc1-start</id>
99 <phase>pre-integration-test</phase>
100 <goals>
101 <goal>start-nc</goal>
102 </goals>
103 <configuration>
104 <nodeId>NC1</nodeId>
105 <dataIpAddress>127.0.0.1</dataIpAddress>
106 <ccHost>localhost</ccHost>
107 <workingDir>${project.build.directory}</workingDir>
108 </configuration>
109 </execution>
110 <execution>
111 <id>hyracks-nc2-start</id>
112 <phase>pre-integration-test</phase>
113 <goals>
114 <goal>start-nc</goal>
115 </goals>
116 <configuration>
117 <nodeId>NC2</nodeId>
118 <dataIpAddress>127.0.0.1</dataIpAddress>
119 <ccHost>localhost</ccHost>
120 <workingDir>${project.build.directory}</workingDir>
121 </configuration>
122 </execution>
123 <execution>
124 <id>deploy-app</id>
125 <phase>pre-integration-test</phase>
126 <goals>
127 <goal>deploy-app</goal>
128 </goals>
129 <configuration>
130 <ccHost>localhost</ccHost>
131 <appName>compat</appName>
132 <harFile>${project.build.directory}/hadoopcompatapp-${project.version}-app-assembly.zip</harFile>
133 </configuration>
134 </execution>
135 <execution>
136 <id>stop-services</id>
137 <phase>post-integration-test</phase>
138 <goals>
139 <goal>stop-services</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-compiler-plugin</artifactId>
147 <version>2.0.2</version>
148 <configuration>
149 <source>1.6</source>
150 <target>1.6</target>
151 </configuration>
152 </plugin>
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-failsafe-plugin</artifactId>
156 <version>2.8.1</version>
157 <executions>
158 <execution>
159 <id>it</id>
160 <phase>integration-test</phase>
161 <goals>
162 <goal>integration-test</goal>
163 </goals>
164 </execution>
165 </executions>
166 </plugin>
167 </plugins>
168 </build>
169 <dependencies>
170 <dependency>
171 <groupId>edu.uci.ics.hyracks.examples.compat</groupId>
172 <artifactId>hadoopcompathelper</artifactId>
173 <version>0.2.2-SNAPSHOT</version>
174 <scope>compile</scope>
175 </dependency>
176 <dependency>
177 <groupId>edu.uci.ics.hyracks.examples.compat</groupId>
178 <artifactId>hadoopcompatclient</artifactId>
179 <version>0.2.2-SNAPSHOT</version>
180 <type>jar</type>
181 <scope>test</scope>
182 </dependency>
183 <dependency>
184 <groupId>junit</groupId>
185 <artifactId>junit</artifactId>
186 <version>4.8.2</version>
187 <type>jar</type>
188 <scope>test</scope>
189 </dependency>
190 </dependencies>
191</project>