blob: 4107d5286c75167a7a8e9c148a97b0a5ceb09a96 [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<?xml version="1.0"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
vinayakb4a6309b2012-10-29 15:44:02 +000016<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 +000017 <modelVersion>4.0.0</modelVersion>
18 <parent>
buyingyie7752502012-10-08 00:35:31 +000019 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000020 <artifactId>pregelix</artifactId>
Vinayak Borkar55e8f8c2013-06-05 23:16:43 -070021 <version>0.2.6</version>
buyingyi7f356c12012-10-07 00:23:17 +000022 </parent>
23 <artifactId>pregelix-dist</artifactId>
24 <name>pregelix-dist</name>
25 <url>http://maven.apache.org</url>
26 <properties>
27 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28 </properties>
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>2.0.2</version>
35 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000036 <source>1.7</source>
37 <target>1.7</target>
buyingyi7f356c12012-10-07 00:23:17 +000038 </configuration>
39 </plugin>
40 <plugin>
buyingyi1341a162013-06-05 15:07:52 -070041 <artifactId>maven-assembly-plugin</artifactId>
42 <version>2.2-beta-5</version>
43 <executions>
44 <execution>
45 <configuration>
46 <descriptors>
47 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
48 </descriptors>
49 </configuration>
50 <phase>package</phase>
51 <goals>
52 <goal>attached</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
buyingyi7f356c12012-10-07 00:23:17 +000057 </plugins>
58 </build>
59 <dependencies>
60 <dependency>
buyingyie7752502012-10-08 00:35:31 +000061 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000062 <artifactId>pregelix-core</artifactId>
Vinayak Borkar55e8f8c2013-06-05 23:16:43 -070063 <version>0.2.6</version>
buyingyi55df5212013-03-24 07:20:08 +000064 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +000065 </dependency>
buyingyi202af412012-10-08 23:07:09 +000066 <dependency>
67 <groupId>edu.uci.ics.hyracks</groupId>
68 <artifactId>pregelix-example</artifactId>
Vinayak Borkar55e8f8c2013-06-05 23:16:43 -070069 <version>0.2.6</version>
buyingyi202af412012-10-08 23:07:09 +000070 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +000071 </dependencies>
72</project>