blob: 80f2e09d434c37ea1a2f76f59567e38c2ddc7f03 [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>
5 <parent>
6 <groupId>edu.uci.ics.hyracks.examples</groupId>
7 <artifactId>tpch-example</artifactId>
8 <version>0.2.2-SNAPSHOT</version>
9 </parent>
10
11 <build>
12 <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
41 <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>
78 <dependency>
79 <groupId>edu.uci.ics.hyracks</groupId>
80 <artifactId>hyracks-dataflow-std</artifactId>
81 <version>0.2.2-SNAPSHOT</version>
82 <scope>compile</scope>
83 </dependency>
84 <dependency>
85 <groupId>edu.uci.ics.hyracks</groupId>
86 <artifactId>hyracks-data-std</artifactId>
87 <version>0.2.2-SNAPSHOT</version>
88 </dependency>
89 </dependencies>
90</project>