blob: cedc2afb073251d5aa0aedec76e88b891a8c2920 [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.text</groupId>
4 <artifactId>textapp</artifactId>
5 <version>0.2.2-SNAPSHOT</version>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>text-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 </execution>
94 <execution>
95 <id>hyracks-nc1-start</id>
96 <phase>pre-integration-test</phase>
97 <goals>
98 <goal>start-nc</goal>
99 </goals>
100 <configuration>
101 <nodeId>NC1</nodeId>
102 <dataIpAddress>127.0.0.1</dataIpAddress>
103 <ccHost>localhost</ccHost>
104 </configuration>
105 </execution>
106 <execution>
107 <id>hyracks-nc2-start</id>
108 <phase>pre-integration-test</phase>
109 <goals>
110 <goal>start-nc</goal>
111 </goals>
112 <configuration>
113 <nodeId>NC2</nodeId>
114 <dataIpAddress>127.0.0.1</dataIpAddress>
115 <ccHost>localhost</ccHost>
116 </configuration>
117 </execution>
118 <execution>
119 <id>deploy-app</id>
120 <phase>pre-integration-test</phase>
121 <goals>
122 <goal>deploy-app</goal>
123 </goals>
124 <configuration>
125 <ccHost>localhost</ccHost>
126 <appName>text</appName>
127 <harFile>${project.build.directory}/textapp-${project.version}-app-assembly.zip</harFile>
128 </configuration>
129 </execution>
130 <execution>
131 <id>stop-services</id>
132 <phase>post-integration-test</phase>
133 <goals>
134 <goal>stop-services</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-compiler-plugin</artifactId>
142 <version>2.0.2</version>
143 <configuration>
144 <source>1.6</source>
145 <target>1.6</target>
146 </configuration>
147 </plugin>
148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-failsafe-plugin</artifactId>
151 <version>2.8.1</version>
152 <executions>
153 <execution>
154 <id>it</id>
155 <phase>integration-test</phase>
156 <goals>
157 <goal>integration-test</goal>
158 </goals>
159 </execution>
160 </executions>
161 </plugin>
162 </plugins>
163 </build>
164 <dependencies>
165 <dependency>
166 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
167 <artifactId>texthelper</artifactId>
168 <version>0.2.2-SNAPSHOT</version>
169 <scope>compile</scope>
170 </dependency>
171 <dependency>
172 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
173 <artifactId>textclient</artifactId>
174 <version>0.2.2-SNAPSHOT</version>
175 <type>jar</type>
176 <scope>test</scope>
177 </dependency>
178 <dependency>
179 <groupId>junit</groupId>
180 <artifactId>junit</artifactId>
181 <version>4.8.2</version>
182 <type>jar</type>
183 <scope>test</scope>
184 </dependency>
185 </dependencies>
186</project>