blob: 77f26e982158ecac5d764834a8b996dff3e51867 [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>
Vinayak Borkarccfbf412013-04-25 11:40:50 -07007 <version>0.2.6-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>
buyingyi55df5212013-03-24 07:20:08 +000022 <source>1.7</source>
23 <target>1.7</target>
buyingyi7f356c12012-10-07 00:23:17 +000024 </configuration>
25 </plugin>
26 <plugin>
buyingyi1341a162013-06-05 15:07:52 -070027 <artifactId>maven-assembly-plugin</artifactId>
28 <version>2.2-beta-5</version>
29 <executions>
30 <execution>
31 <configuration>
32 <descriptors>
33 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
34 </descriptors>
35 </configuration>
36 <phase>package</phase>
37 <goals>
38 <goal>attached</goal>
39 </goals>
40 </execution>
41 </executions>
42 </plugin>
buyingyi7f356c12012-10-07 00:23:17 +000043 </plugins>
44 </build>
45 <dependencies>
46 <dependency>
buyingyie7752502012-10-08 00:35:31 +000047 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000048 <artifactId>pregelix-core</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070049 <version>0.2.6-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000050 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +000051 </dependency>
buyingyi202af412012-10-08 23:07:09 +000052 <dependency>
53 <groupId>edu.uci.ics.hyracks</groupId>
54 <artifactId>pregelix-example</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070055 <version>0.2.6-SNAPSHOT</version>
buyingyi202af412012-10-08 23:07:09 +000056 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +000057 </dependencies>
58</project>