alexander.behm | 0fb90b4 | 2010-10-06 03:32:13 +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 | c63ae18 | 2011-08-05 06:41:50 +0000 | [diff] [blame^] | 5 | <version>0.1.7</version> |
alexander.behm | 0fb90b4 | 2010-10-06 03:32:13 +0000 | [diff] [blame] | 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 9 | <artifactId>btree-example</artifactId> |
vinayakb | c63ae18 | 2011-08-05 06:41:50 +0000 | [diff] [blame^] | 10 | <version>0.1.7</version> |
alexander.behm | 0fb90b4 | 2010-10-06 03:32:13 +0000 | [diff] [blame] | 11 | </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> |
vinayakb | c63ae18 | 2011-08-05 06:41:50 +0000 | [diff] [blame^] | 54 | <version>0.1.7</version> |
alexander.behm | 0fb90b4 | 2010-10-06 03:32:13 +0000 | [diff] [blame] | 55 | <scope>compile</scope> |
| 56 | </dependency> |
| 57 | </dependencies> |
| 58 | </project> |