blob: 15f086c68f7e86d7a988e722992b93dce45c4105 [file] [log] [blame]
vinayakbc8d86de2010-08-12 22:25:49 +00001<project>
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
4 <artifactId>tpchapp</artifactId>
vinayakb97785f42010-08-19 20:09:01 +00005 <version>0.1.1-SNAPSHOT</version>
vinayakbc8d86de2010-08-12 22:25:49 +00006
7 <build>
8 <plugins>
9 <plugin>
10 <groupId>org.apache.maven.plugins</groupId>
11 <artifactId>maven-dependency-plugin</artifactId>
12 <executions>
13 <execution>
14 <id>copy-dependencies</id>
15 <phase>package</phase>
16 <goals>
17 <goal>copy-dependencies</goal>
18 </goals>
19 <configuration>
20 <outputDirectory>target/application/lib</outputDirectory>
21 </configuration>
22 </execution>
23 </executions>
24 </plugin>
25 <plugin>
26 <artifactId>maven-assembly-plugin</artifactId>
27 <version>2.2-beta-5</version>
28 <executions>
29 <execution>
30 <configuration>
31 <descriptors>
32 <descriptor>src/main/assembly/app-assembly.xml</descriptor>
33 </descriptors>
34 </configuration>
35 <phase>package</phase>
36 <goals>
37 <goal>attached</goal>
38 </goals>
39 </execution>
40 </executions>
41 </plugin>
42 </plugins>
43 </build>
44 <dependencies>
45 <dependency>
46 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
47 <artifactId>tpchhelper</artifactId>
vinayakb97785f42010-08-19 20:09:01 +000048 <version>0.1.1-SNAPSHOT</version>
vinayakbc8d86de2010-08-12 22:25:49 +000049 <scope>compile</scope>
50 </dependency>
51 </dependencies>
52</project>