vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 1 | <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> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 5 | <name>btreeapp</name> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 9 | <artifactId>btree-example</artifactId> |
vinayakb | f40317d | 2013-03-25 00:33:09 +0000 | [diff] [blame] | 10 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 11 | </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> |
vinayakb | f40317d | 2013-03-25 00:33:09 +0000 | [diff] [blame] | 83 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 84 | <scope>compile</scope> |
| 85 | </dependency> |
| 86 | </dependencies> |
| 87 | </project> |