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> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 10 | <version>0.2.3-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> |
| 20 | <source>1.6</source> |
| 21 | <target>1.6</target> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | <plugin> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 25 | <artifactId>maven-assembly-plugin</artifactId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 26 | <configuration> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 27 | <descriptorRefs> |
| 28 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 29 | </descriptorRefs> |
| 30 | </configuration> |
buyingyi | 4c6d6e8 | 2012-10-10 11:46:54 +0000 | [diff] [blame] | 31 | <executions> |
| 32 | <execution> |
| 33 | <id>make-my-jar-with-dependencies</id> |
| 34 | <phase>package</phase> |
| 35 | <goals> |
| 36 | <goal>single</goal> |
| 37 | </goals> |
| 38 | </execution> |
| 39 | </executions> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 40 | </plugin> |
| 41 | <plugin> |
| 42 | <groupId>org.codehaus.mojo</groupId> |
| 43 | <artifactId>appassembler-maven-plugin</artifactId> |
vinayakb | a8d545c | 2013-02-05 05:54:47 +0000 | [diff] [blame^] | 44 | <version>1.3</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 45 | <executions> |
| 46 | <execution> |
| 47 | <configuration> |
| 48 | <programs> |
| 49 | <program> |
| 50 | <mainClass>edu.uci.ics.pregelix.example.Client</mainClass> |
| 51 | <name>pregelix</name> |
| 52 | </program> |
| 53 | </programs> |
| 54 | <repositoryLayout>flat</repositoryLayout> |
| 55 | <repositoryName>lib</repositoryName> |
| 56 | </configuration> |
| 57 | <phase>package</phase> |
| 58 | <goals> |
| 59 | <goal>assemble</goal> |
| 60 | </goals> |
| 61 | </execution> |
| 62 | </executions> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-surefire-plugin</artifactId> |
| 67 | <version>2.7.2</version> |
| 68 | <configuration> |
| 69 | <forkMode>pertest</forkMode> |
buyingyi | 6259805 | 2012-10-22 19:55:10 +0000 | [diff] [blame] | 70 | <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 71 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 72 | <includes> |
| 73 | <include>**/*TestSuite.java</include> |
| 74 | <include>**/*Test.java</include> |
| 75 | </includes> |
| 76 | </configuration> |
| 77 | </plugin> |
| 78 | <plugin> |
| 79 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | a8d545c | 2013-02-05 05:54:47 +0000 | [diff] [blame^] | 80 | <version>2.5</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 81 | <configuration> |
| 82 | <filesets> |
| 83 | <fileset> |
| 84 | <directory>.</directory> |
| 85 | <includes> |
| 86 | <include>teststore*</include> |
| 87 | <include>edu*</include> |
| 88 | <include>actual*</include> |
| 89 | <include>build*</include> |
| 90 | <include>expect*</include> |
| 91 | <include>ClusterController*</include> |
| 92 | <include>edu.uci.*</include> |
| 93 | </includes> |
| 94 | </fileset> |
| 95 | </filesets> |
| 96 | </configuration> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | </build> |
| 100 | |
| 101 | <dependencies> |
| 102 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 103 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 104 | <artifactId>pregelix-core</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 105 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 106 | <type>jar</type> |
| 107 | <scope>compile</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>junit</groupId> |
| 111 | <artifactId>junit</artifactId> |
| 112 | <version>4.8.1</version> |
| 113 | <scope>test</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>com.google.collections</groupId> |
| 117 | <artifactId>google-collections</artifactId> |
| 118 | <version>1.0</version> |
| 119 | </dependency> |
| 120 | </dependencies> |
| 121 | |
| 122 | </project> |