blob: 7a8554b7c9cf85937a9c0c8229effe119fefaaf1 [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<?xml version="1.0"?>
buyingyi8027a492013-07-10 23:54:56 -07002<!-- ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
4 not use this file except in compliance with the License. ! you may obtain
5 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
6 ! ! Unless required by applicable law or agreed to in writing, software !
7 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
8 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
9 License for the specific language governing permissions and ! limitations
10 under the License. ! -->
11<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12 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 +000013 <modelVersion>4.0.0</modelVersion>
14 <parent>
buyingyie7752502012-10-08 00:35:31 +000015 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000016 <artifactId>pregelix</artifactId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070017 <version>0.2.7-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000018 </parent>
19 <artifactId>pregelix-dist</artifactId>
20 <name>pregelix-dist</name>
21 <url>http://maven.apache.org</url>
22 <properties>
23 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24 </properties>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-compiler-plugin</artifactId>
30 <version>2.0.2</version>
31 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000032 <source>1.7</source>
33 <target>1.7</target>
buyingyi7f356c12012-10-07 00:23:17 +000034 </configuration>
35 </plugin>
36 <plugin>
buyingyi8027a492013-07-10 23:54:56 -070037 <artifactId>maven-assembly-plugin</artifactId>
38 <version>2.2-beta-5</version>
39 <executions>
40 <execution>
41 <configuration>
42 <descriptors>
43 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
44 </descriptors>
45 </configuration>
46 <phase>package</phase>
47 <goals>
48 <goal>attached</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
buyingyi7f356c12012-10-07 00:23:17 +000053 </plugins>
54 </build>
55 <dependencies>
56 <dependency>
buyingyie7752502012-10-08 00:35:31 +000057 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000058 <artifactId>pregelix-core</artifactId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070059 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000060 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +000061 </dependency>
buyingyi202af412012-10-08 23:07:09 +000062 <dependency>
63 <groupId>edu.uci.ics.hyracks</groupId>
64 <artifactId>pregelix-example</artifactId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070065 <version>0.2.7-SNAPSHOT</version>
buyingyi202af412012-10-08 23:07:09 +000066 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +000067 </dependencies>
68</project>