buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame] | 2 | <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/xsd/maven-4.0.0.xsd"> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 5 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 6 | <artifactId>pregelix</artifactId> |
vinayakb | ea837d0 | 2013-03-25 00:33:09 +0000 | [diff] [blame] | 7 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>pregelix-dist</artifactId> |
| 10 | <name>pregelix-dist</name> |
| 11 | <url>http://maven.apache.org</url> |
| 12 | <properties> |
| 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 14 | </properties> |
| 15 | <build> |
| 16 | <plugins> |
| 17 | <plugin> |
| 18 | <groupId>org.apache.maven.plugins</groupId> |
| 19 | <artifactId>maven-compiler-plugin</artifactId> |
| 20 | <version>2.0.2</version> |
| 21 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 22 | <source>1.7</source> |
| 23 | <target>1.7</target> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 24 | </configuration> |
| 25 | </plugin> |
| 26 | <plugin> |
| 27 | <artifactId>maven-resources-plugin</artifactId> |
| 28 | <version>2.5</version> |
| 29 | <executions> |
| 30 | <execution> |
| 31 | <id>copy-scripts</id> |
| 32 | <!-- here the phase you need --> |
| 33 | <phase>package</phase> |
| 34 | <goals> |
| 35 | <goal>copy-resources</goal> |
| 36 | </goals> |
| 37 | <configuration> |
| 38 | <outputDirectory>target/appassembler</outputDirectory> |
| 39 | <resources> |
| 40 | <resource> |
| 41 | <directory>../pregelix-core/target/appassembler</directory> |
| 42 | </resource> |
| 43 | </resources> |
| 44 | </configuration> |
| 45 | </execution> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 46 | <execution> |
| 47 | <id>copy-examples</id> |
| 48 | <phase>package</phase> |
| 49 | <goals> |
| 50 | <goal>copy-resources</goal> |
| 51 | </goals> |
| 52 | <configuration> |
| 53 | <outputDirectory>target/appassembler/examples</outputDirectory> |
| 54 | <resources> |
| 55 | <resource> |
| 56 | <directory>../pregelix-example/target</directory> |
| 57 | <includes> |
| 58 | <include>*.jar</include> |
| 59 | </includes> |
| 60 | </resource> |
| 61 | </resources> |
| 62 | </configuration> |
| 63 | </execution> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 64 | </executions> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </build> |
| 68 | <dependencies> |
| 69 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 70 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 71 | <artifactId>pregelix-core</artifactId> |
vinayakb | ea837d0 | 2013-03-25 00:33:09 +0000 | [diff] [blame] | 72 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 73 | <scope>compile</scope> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 74 | </dependency> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 75 | <dependency> |
| 76 | <groupId>edu.uci.ics.hyracks</groupId> |
| 77 | <artifactId>pregelix-example</artifactId> |
vinayakb | ea837d0 | 2013-03-25 00:33:09 +0000 | [diff] [blame] | 78 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 79 | </dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 80 | </dependencies> |
| 81 | </project> |