blob: 76eb2571db070ca1a506a8783ccd26538338401e [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.tpch</groupId>
4 <artifactId>tpchapp</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +00005 <name>tpchapp</name>
vinayakb0c860392012-10-06 18:47:20 +00006 <parent>
7 <groupId>edu.uci.ics.hyracks.examples</groupId>
8 <artifactId>tpch-example</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +00009 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000010 </parent>
11
12 <build>
13 <pluginManagement>
14 <plugins>
15 <plugin>
16 <groupId>org.eclipse.m2e</groupId>
17 <artifactId>lifecycle-mapping</artifactId>
18 <version>1.0.0</version>
19 <configuration>
20 <lifecycleMappingMetadata>
21 <pluginExecutions>
22 <pluginExecution>
23 <pluginExecutionFilter>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-dependency-plugin</artifactId>
26 <versionRange>[1.0.0,)</versionRange>
27 <goals>
28 <goal>copy-dependencies</goal>
29 </goals>
30 </pluginExecutionFilter>
31 <action>
32 <ignore />
33 </action>
34 </pluginExecution>
35 </pluginExecutions>
36 </lifecycleMappingMetadata>
37 </configuration>
38 </plugin>
39 </plugins>
40 </pluginManagement>
41
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-dependency-plugin</artifactId>
46 <executions>
47 <execution>
48 <id>copy-dependencies</id>
49 <phase>package</phase>
50 <goals>
51 <goal>copy-dependencies</goal>
52 </goals>
53 <configuration>
54 <outputDirectory>target/application/lib</outputDirectory>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 <plugin>
60 <artifactId>maven-assembly-plugin</artifactId>
61 <version>2.2-beta-5</version>
62 <executions>
63 <execution>
64 <configuration>
65 <descriptors>
66 <descriptor>src/main/assembly/app-assembly.xml</descriptor>
67 </descriptors>
68 </configuration>
69 <phase>package</phase>
70 <goals>
71 <goal>attached</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
76 </plugins>
77 </build>
78 <dependencies>
79 <dependency>
80 <groupId>edu.uci.ics.hyracks</groupId>
81 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000082 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000083 <scope>compile</scope>
84 </dependency>
85 <dependency>
86 <groupId>edu.uci.ics.hyracks</groupId>
87 <artifactId>hyracks-data-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000088 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000089 </dependency>
90 </dependencies>
91</project>