vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame] | 1 | <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] | 2 | <modelVersion>4.0.0</modelVersion> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 3 | <artifactId>pregelix-example</artifactId> |
| 4 | <packaging>jar</packaging> |
| 5 | <name>pregelix-example</name> |
| 6 | |
| 7 | <parent> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 8 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 9 | <artifactId>pregelix</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 10 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
| 18 | <version>2.0.2</version> |
| 19 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 20 | <source>1.7</source> |
| 21 | <target>1.7</target> |
| 22 | <fork>true</fork> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 23 | </configuration> |
| 24 | </plugin> |
| 25 | <plugin> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 26 | <artifactId>maven-assembly-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 27 | <version>2.2-beta-5</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 28 | <configuration> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 29 | <descriptorRefs> |
| 30 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 31 | </descriptorRefs> |
| 32 | </configuration> |
buyingyi | 4c6d6e8 | 2012-10-10 11:46:54 +0000 | [diff] [blame] | 33 | <executions> |
| 34 | <execution> |
| 35 | <id>make-my-jar-with-dependencies</id> |
| 36 | <phase>package</phase> |
| 37 | <goals> |
| 38 | <goal>single</goal> |
| 39 | </goals> |
| 40 | </execution> |
| 41 | </executions> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 42 | </plugin> |
| 43 | <plugin> |
| 44 | <groupId>org.codehaus.mojo</groupId> |
| 45 | <artifactId>appassembler-maven-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 46 | <version>1.3</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 47 | <executions> |
| 48 | <execution> |
| 49 | <configuration> |
| 50 | <programs> |
| 51 | <program> |
| 52 | <mainClass>edu.uci.ics.pregelix.example.Client</mainClass> |
| 53 | <name>pregelix</name> |
| 54 | </program> |
| 55 | </programs> |
| 56 | <repositoryLayout>flat</repositoryLayout> |
| 57 | <repositoryName>lib</repositoryName> |
| 58 | </configuration> |
| 59 | <phase>package</phase> |
| 60 | <goals> |
| 61 | <goal>assemble</goal> |
| 62 | </goals> |
| 63 | </execution> |
| 64 | </executions> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-surefire-plugin</artifactId> |
| 69 | <version>2.7.2</version> |
| 70 | <configuration> |
| 71 | <forkMode>pertest</forkMode> |
buyingyi | 80bb3cc | 2013-04-25 00:17:23 -0700 | [diff] [blame] | 72 | <argLine>-enableassertions -Xmx2047m -XX:MaxPermSize=300m -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 73 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 74 | <includes> |
| 75 | <include>**/*TestSuite.java</include> |
| 76 | <include>**/*Test.java</include> |
| 77 | </includes> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | <plugin> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 81 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 82 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 83 | <version>2.4.1</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> |
| 96 | </includes> |
| 97 | </fileset> |
| 98 | </filesets> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </build> |
| 103 | |
| 104 | <dependencies> |
| 105 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 106 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 107 | <artifactId>pregelix-core</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 108 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 109 | <type>jar</type> |
| 110 | <scope>compile</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>junit</groupId> |
| 114 | <artifactId>junit</artifactId> |
| 115 | <version>4.8.1</version> |
| 116 | <scope>test</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>com.google.collections</groupId> |
| 120 | <artifactId>google-collections</artifactId> |
| 121 | <version>1.0</version> |
| 122 | </dependency> |
| 123 | </dependencies> |
| 124 | |
| 125 | </project> |