Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame] | 15 | <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/maven-v4_0_0.xsd"> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 17 | <artifactId>pregelix-example</artifactId> |
| 18 | <packaging>jar</packaging> |
| 19 | <name>pregelix-example</name> |
| 20 | |
| 21 | <parent> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 22 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 23 | <artifactId>pregelix</artifactId> |
Ian Maxon | 1f30d4e | 2014-09-19 15:58:43 -0700 | [diff] [blame^] | 24 | <version>0.2.13</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-compiler-plugin</artifactId> |
| 32 | <version>2.0.2</version> |
| 33 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 34 | <source>1.7</source> |
| 35 | <target>1.7</target> |
| 36 | <fork>true</fork> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 37 | </configuration> |
| 38 | </plugin> |
| 39 | <plugin> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 40 | <artifactId>maven-assembly-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 41 | <version>2.2-beta-5</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 42 | <configuration> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 43 | <descriptorRefs> |
| 44 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 45 | </descriptorRefs> |
| 46 | </configuration> |
buyingyi | 4c6d6e8 | 2012-10-10 11:46:54 +0000 | [diff] [blame] | 47 | <executions> |
| 48 | <execution> |
| 49 | <id>make-my-jar-with-dependencies</id> |
| 50 | <phase>package</phase> |
| 51 | <goals> |
| 52 | <goal>single</goal> |
| 53 | </goals> |
| 54 | </execution> |
| 55 | </executions> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 56 | </plugin> |
| 57 | <plugin> |
| 58 | <groupId>org.codehaus.mojo</groupId> |
| 59 | <artifactId>appassembler-maven-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 60 | <version>1.3</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 61 | <executions> |
| 62 | <execution> |
| 63 | <configuration> |
| 64 | <programs> |
| 65 | <program> |
| 66 | <mainClass>edu.uci.ics.pregelix.example.Client</mainClass> |
| 67 | <name>pregelix</name> |
| 68 | </program> |
| 69 | </programs> |
| 70 | <repositoryLayout>flat</repositoryLayout> |
| 71 | <repositoryName>lib</repositoryName> |
| 72 | </configuration> |
| 73 | <phase>package</phase> |
| 74 | <goals> |
| 75 | <goal>assemble</goal> |
| 76 | </goals> |
| 77 | </execution> |
| 78 | </executions> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 82 | <artifactId>maven-clean-plugin</artifactId> |
buyingyi | 9d71c88 | 2013-08-21 00:37:34 -0700 | [diff] [blame] | 83 | <version>2.5</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 84 | <configuration> |
| 85 | <filesets> |
| 86 | <fileset> |
| 87 | <directory>.</directory> |
| 88 | <includes> |
| 89 | <include>teststore*</include> |
| 90 | <include>edu*</include> |
| 91 | <include>actual*</include> |
| 92 | <include>build*</include> |
| 93 | <include>expect*</include> |
| 94 | <include>ClusterController*</include> |
| 95 | <include>edu.uci.*</include> |
buyingyi | 7ac14d4 | 2013-07-19 13:05:47 -0700 | [diff] [blame] | 96 | <include>dev*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 97 | </includes> |
| 98 | </fileset> |
| 99 | </filesets> |
| 100 | </configuration> |
| 101 | </plugin> |
| 102 | </plugins> |
| 103 | </build> |
| 104 | |
| 105 | <dependencies> |
| 106 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 107 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 108 | <artifactId>pregelix-core</artifactId> |
Ian Maxon | 1f30d4e | 2014-09-19 15:58:43 -0700 | [diff] [blame^] | 109 | <version>0.2.13</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 110 | <type>jar</type> |
| 111 | <scope>compile</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 114 | <groupId>com.google.collections</groupId> |
| 115 | <artifactId>google-collections</artifactId> |
| 116 | <version>1.0</version> |
| 117 | </dependency> |
| 118 | </dependencies> |
| 119 | |
| 120 | </project> |