blob: e3f05902ba0dcfe49210990eebc9d67abc92d2d9 [file] [log] [blame]
alexander.behm0fb90b42010-10-06 03:32:13 +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.btree</groupId>
4 <artifactId>btreeapp</artifactId>
vinayakb48f1adf2011-08-05 06:43:44 +00005 <version>0.1.8-SNAPSHOT</version>
alexander.behm0fb90b42010-10-06 03:32:13 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>btree-example</artifactId>
vinayakb48f1adf2011-08-05 06:43:44 +000010 <version>0.1.8-SNAPSHOT</version>
alexander.behm0fb90b42010-10-06 03:32:13 +000011 </parent>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-dependency-plugin</artifactId>
18 <executions>
19 <execution>
20 <id>copy-dependencies</id>
21 <phase>package</phase>
22 <goals>
23 <goal>copy-dependencies</goal>
24 </goals>
25 <configuration>
26 <outputDirectory>target/application/lib</outputDirectory>
27 </configuration>
28 </execution>
29 </executions>
30 </plugin>
31 <plugin>
32 <artifactId>maven-assembly-plugin</artifactId>
33 <version>2.2-beta-5</version>
34 <executions>
35 <execution>
36 <configuration>
37 <descriptors>
38 <descriptor>src/main/assembly/app-assembly.xml</descriptor>
39 </descriptors>
40 </configuration>
41 <phase>package</phase>
42 <goals>
43 <goal>attached</goal>
44 </goals>
45 </execution>
46 </executions>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51 <dependency>
52 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
53 <artifactId>btreehelper</artifactId>
vinayakb48f1adf2011-08-05 06:43:44 +000054 <version>0.1.8-SNAPSHOT</version>
alexander.behm0fb90b42010-10-06 03:32:13 +000055 <scope>compile</scope>
56 </dependency>
57 </dependencies>
58</project>