vinayakb | f76c937 | 2010-08-30 02:06:29 +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"> |
vinayakb | c8d86de | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <groupId>edu.uci.ics.hyracks.examples.tpch</groupId> |
| 4 | <artifactId>tpchapp</artifactId> |
vinayakb | 0fbb5f2 | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 7 | <artifactId>tpch-example</artifactId> |
vinayakb | 25206b6 | 2012-03-13 08:50:40 +0000 | [diff] [blame^] | 8 | <version>0.2.0-SNAPSHOT</version> |
vinayakb | 0fbb5f2 | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 9 | </parent> |
| 10 | |
vinayakb | c8d86de | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 11 | <build> |
alexander.behm | 8aa4e35 | 2011-09-21 18:52:49 +0000 | [diff] [blame] | 12 | <pluginManagement> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.eclipse.m2e</groupId> |
| 16 | <artifactId>lifecycle-mapping</artifactId> |
| 17 | <version>1.0.0</version> |
| 18 | <configuration> |
| 19 | <lifecycleMappingMetadata> |
| 20 | <pluginExecutions> |
| 21 | <pluginExecution> |
| 22 | <pluginExecutionFilter> |
| 23 | <groupId>org.apache.maven.plugins</groupId> |
| 24 | <artifactId>maven-dependency-plugin</artifactId> |
| 25 | <versionRange>[1.0.0,)</versionRange> |
| 26 | <goals> |
| 27 | <goal>copy-dependencies</goal> |
| 28 | </goals> |
| 29 | </pluginExecutionFilter> |
| 30 | <action> |
| 31 | <ignore /> |
| 32 | </action> |
| 33 | </pluginExecution> |
| 34 | </pluginExecutions> |
| 35 | </lifecycleMappingMetadata> |
| 36 | </configuration> |
| 37 | </plugin> |
| 38 | </plugins> |
| 39 | </pluginManagement> |
| 40 | |
vinayakb | c8d86de | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.maven.plugins</groupId> |
| 44 | <artifactId>maven-dependency-plugin</artifactId> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <id>copy-dependencies</id> |
| 48 | <phase>package</phase> |
| 49 | <goals> |
| 50 | <goal>copy-dependencies</goal> |
| 51 | </goals> |
| 52 | <configuration> |
| 53 | <outputDirectory>target/application/lib</outputDirectory> |
| 54 | </configuration> |
| 55 | </execution> |
| 56 | </executions> |
| 57 | </plugin> |
| 58 | <plugin> |
| 59 | <artifactId>maven-assembly-plugin</artifactId> |
| 60 | <version>2.2-beta-5</version> |
| 61 | <executions> |
| 62 | <execution> |
| 63 | <configuration> |
| 64 | <descriptors> |
| 65 | <descriptor>src/main/assembly/app-assembly.xml</descriptor> |
| 66 | </descriptors> |
| 67 | </configuration> |
| 68 | <phase>package</phase> |
| 69 | <goals> |
| 70 | <goal>attached</goal> |
| 71 | </goals> |
| 72 | </execution> |
| 73 | </executions> |
| 74 | </plugin> |
| 75 | </plugins> |
| 76 | </build> |
| 77 | <dependencies> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>edu.uci.ics.hyracks</groupId> |
| 80 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 25206b6 | 2012-03-13 08:50:40 +0000 | [diff] [blame^] | 81 | <version>0.2.0-SNAPSHOT</version> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 82 | <scope>compile</scope> |
| 83 | </dependency> |
vinayakb | 25206b6 | 2012-03-13 08:50:40 +0000 | [diff] [blame^] | 84 | <dependency> |
| 85 | <groupId>edu.uci.ics.hyracks</groupId> |
| 86 | <artifactId>hyracks-data-std</artifactId> |
| 87 | <version>0.2.0-SNAPSHOT</version> |
| 88 | </dependency> |
vinayakb | c8d86de | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 89 | </dependencies> |
| 90 | </project> |