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> |
buyingyi | aeba25c | 2013-07-15 17:02:20 -0700 | [diff] [blame] | 24 | <version>0.2.9-SNAPSHOT</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> |
| 82 | <artifactId>maven-surefire-plugin</artifactId> |
| 83 | <version>2.7.2</version> |
| 84 | <configuration> |
| 85 | <forkMode>pertest</forkMode> |
buyingyi | 80bb3cc | 2013-04-25 00:17:23 -0700 | [diff] [blame] | 86 | <argLine>-enableassertions -Xmx2047m -XX:MaxPermSize=300m -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 87 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 88 | <includes> |
| 89 | <include>**/*TestSuite.java</include> |
| 90 | <include>**/*Test.java</include> |
| 91 | </includes> |
| 92 | </configuration> |
| 93 | </plugin> |
| 94 | <plugin> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 95 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 96 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 97 | <version>2.4.1</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 98 | <configuration> |
| 99 | <filesets> |
| 100 | <fileset> |
| 101 | <directory>.</directory> |
| 102 | <includes> |
| 103 | <include>teststore*</include> |
| 104 | <include>edu*</include> |
| 105 | <include>actual*</include> |
| 106 | <include>build*</include> |
| 107 | <include>expect*</include> |
| 108 | <include>ClusterController*</include> |
| 109 | <include>edu.uci.*</include> |
buyingyi | 7ac14d4 | 2013-07-19 13:05:47 -0700 | [diff] [blame^] | 110 | <include>dev*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 111 | </includes> |
| 112 | </fileset> |
| 113 | </filesets> |
| 114 | </configuration> |
| 115 | </plugin> |
| 116 | </plugins> |
| 117 | </build> |
| 118 | |
| 119 | <dependencies> |
| 120 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 121 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 122 | <artifactId>pregelix-core</artifactId> |
buyingyi | aeba25c | 2013-07-15 17:02:20 -0700 | [diff] [blame] | 123 | <version>0.2.9-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 124 | <type>jar</type> |
| 125 | <scope>compile</scope> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>junit</groupId> |
| 129 | <artifactId>junit</artifactId> |
| 130 | <version>4.8.1</version> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>com.google.collections</groupId> |
| 135 | <artifactId>google-collections</artifactId> |
| 136 | <version>1.0</version> |
| 137 | </dependency> |
| 138 | </dependencies> |
| 139 | |
| 140 | </project> |