blob: f0551a609aaa4a1dd02cb48ade5cc17a201fe0d8 [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. ! -->
buyingyi7833f6d2013-07-14 20:37:04 -070011<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 +000012 <modelVersion>4.0.0</modelVersion>
13 <parent>
buyingyie7752502012-10-08 00:35:31 +000014 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000015 <artifactId>pregelix</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070016 <version>0.2.10-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000017 </parent>
18 <artifactId>pregelix-dist</artifactId>
19 <name>pregelix-dist</name>
20 <url>http://maven.apache.org</url>
21 <properties>
22 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23 </properties>
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 <version>2.0.2</version>
30 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000031 <source>1.7</source>
32 <target>1.7</target>
buyingyi7f356c12012-10-07 00:23:17 +000033 </configuration>
34 </plugin>
35 <plugin>
buyingyi8027a492013-07-10 23:54:56 -070036 <artifactId>maven-assembly-plugin</artifactId>
37 <version>2.2-beta-5</version>
38 <executions>
39 <execution>
40 <configuration>
41 <descriptors>
42 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
43 </descriptors>
44 </configuration>
45 <phase>package</phase>
46 <goals>
47 <goal>attached</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
buyingyi7f356c12012-10-07 00:23:17 +000052 </plugins>
53 </build>
54 <dependencies>
55 <dependency>
buyingyie7752502012-10-08 00:35:31 +000056 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000057 <artifactId>pregelix-core</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070058 <version>0.2.10-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000059 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +000060 </dependency>
buyingyi202af412012-10-08 23:07:09 +000061 <dependency>
62 <groupId>edu.uci.ics.hyracks</groupId>
63 <artifactId>pregelix-example</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070064 <version>0.2.10-SNAPSHOT</version>
buyingyi202af412012-10-08 23:07:09 +000065 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +000066 </dependencies>
67</project>