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