blob: 05256a30f16521b2bac63d7ed5e1a94039b53626 [file] [log] [blame]
vinayakbf76c9372010-08-30 02:06:29 +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">
vinayakbc8d86de2010-08-12 22:25:49 +00002 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
4 <artifactId>tpchapp</artifactId>
vinayakb0fbb5f22010-08-19 21:44:21 +00005 <parent>
6 <groupId>edu.uci.ics.hyracks.examples</groupId>
7 <artifactId>tpch-example</artifactId>
vinayakb25206b62012-03-13 08:50:40 +00008 <version>0.2.0-SNAPSHOT</version>
vinayakb0fbb5f22010-08-19 21:44:21 +00009 </parent>
10
vinayakbc8d86de2010-08-12 22:25:49 +000011 <build>
alexander.behm8aa4e352011-09-21 18:52:49 +000012 <pluginManagement>
13 <plugins>
14 <plugin>
15 <groupId>org.eclipse.m2e</groupId>
16 <artifactId>lifecycle-mapping</artifactId>
17 <version>1.0.0</version>
18 <configuration>
19 <lifecycleMappingMetadata>
20 <pluginExecutions>
21 <pluginExecution>
22 <pluginExecutionFilter>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-dependency-plugin</artifactId>
25 <versionRange>[1.0.0,)</versionRange>
26 <goals>
27 <goal>copy-dependencies</goal>
28 </goals>
29 </pluginExecutionFilter>
30 <action>
31 <ignore />
32 </action>
33 </pluginExecution>
34 </pluginExecutions>
35 </lifecycleMappingMetadata>
36 </configuration>
37 </plugin>
38 </plugins>
39 </pluginManagement>
40
vinayakbc8d86de2010-08-12 22:25:49 +000041 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-dependency-plugin</artifactId>
45 <executions>
46 <execution>
47 <id>copy-dependencies</id>
48 <phase>package</phase>
49 <goals>
50 <goal>copy-dependencies</goal>
51 </goals>
52 <configuration>
53 <outputDirectory>target/application/lib</outputDirectory>
54 </configuration>
55 </execution>
56 </executions>
57 </plugin>
58 <plugin>
59 <artifactId>maven-assembly-plugin</artifactId>
60 <version>2.2-beta-5</version>
61 <executions>
62 <execution>
63 <configuration>
64 <descriptors>
65 <descriptor>src/main/assembly/app-assembly.xml</descriptor>
66 </descriptors>
67 </configuration>
68 <phase>package</phase>
69 <goals>
70 <goal>attached</goal>
71 </goals>
72 </execution>
73 </executions>
74 </plugin>
75 </plugins>
76 </build>
77 <dependencies>
vinayakbcb36c5d2010-09-30 20:57:28 +000078 <dependency>
79 <groupId>edu.uci.ics.hyracks</groupId>
80 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb25206b62012-03-13 08:50:40 +000081 <version>0.2.0-SNAPSHOT</version>
vinayakbcb36c5d2010-09-30 20:57:28 +000082 <scope>compile</scope>
83 </dependency>
vinayakb25206b62012-03-13 08:50:40 +000084 <dependency>
85 <groupId>edu.uci.ics.hyracks</groupId>
86 <artifactId>hyracks-data-std</artifactId>
87 <version>0.2.0-SNAPSHOT</version>
88 </dependency>
vinayakbc8d86de2010-08-12 22:25:49 +000089 </dependencies>
90</project>