buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 2 | <!-- |
| 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 | !--> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame] | 16 | <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"> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 17 | <modelVersion>4.0.0</modelVersion> |
| 18 | <parent> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 19 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 20 | <artifactId>pregelix</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 21 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 22 | </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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 36 | <source>1.7</source> |
| 37 | <target>1.7</target> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 38 | </configuration> |
| 39 | </plugin> |
| 40 | <plugin> |
buyingyi | 1341a16 | 2013-06-05 15:07:52 -0700 | [diff] [blame] | 41 | <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> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 57 | </plugins> |
| 58 | </build> |
| 59 | <dependencies> |
| 60 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 61 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 62 | <artifactId>pregelix-core</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 63 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 64 | <scope>compile</scope> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 65 | </dependency> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 66 | <dependency> |
| 67 | <groupId>edu.uci.ics.hyracks</groupId> |
| 68 | <artifactId>pregelix-example</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 69 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 70 | </dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 71 | </dependencies> |
| 72 | </project> |