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