blob: 4cb038756e5a01a35fd9d5ec65f68cab33daaab3 [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<?xml version="1.0"?>
vinayakb4a6309b2012-10-29 15:44:02 +00002<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">
buyingyi7f356c12012-10-07 00:23:17 +00003 <modelVersion>4.0.0</modelVersion>
4 <parent>
buyingyie7752502012-10-08 00:35:31 +00005 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +00006 <artifactId>pregelix</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +00007 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +00008 </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>
22 <source>1.6</source>
23 <target>1.6</target>
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>
buyingyi202af412012-10-08 23:07:09 +000046 <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>
buyingyi7f356c12012-10-07 00:23:17 +000064 </executions>
65 </plugin>
66 </plugins>
67 </build>
68 <dependencies>
69 <dependency>
buyingyie7752502012-10-08 00:35:31 +000070 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000071 <artifactId>pregelix-core</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000072 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000073 <scope>comile</scope>
74 </dependency>
buyingyi202af412012-10-08 23:07:09 +000075 <dependency>
76 <groupId>edu.uci.ics.hyracks</groupId>
77 <artifactId>pregelix-example</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000078 <version>0.2.3-SNAPSHOT</version>
buyingyi202af412012-10-08 23:07:09 +000079 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +000080 </dependencies>
81</project>