vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
vinayakb | b4a38c0 | 2012-10-29 15:44:02 +0000 | [diff] [blame] | 2 | <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"> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <artifactId>pregelix-api</artifactId> |
| 5 | <name>pregelix-api</name> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <artifactId>pregelix</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 10 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <properties> |
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | </properties> |
| 16 | |
| 17 | <build> |
| 18 | <plugins> |
| 19 | <plugin> |
| 20 | <groupId>org.apache.maven.plugins</groupId> |
| 21 | <artifactId>maven-compiler-plugin</artifactId> |
| 22 | <version>2.0.2</version> |
| 23 | <configuration> |
buyingyi | 5df938f | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 24 | <source>1.7</source> |
| 25 | <target>1.7</target> |
| 26 | <fork>true</fork> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 27 | </configuration> |
| 28 | </plugin> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-surefire-plugin</artifactId> |
| 32 | <version>2.7.2</version> |
| 33 | <configuration> |
| 34 | <forkMode>pertest</forkMode> |
| 35 | <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8 |
| 36 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 37 | <includes> |
| 38 | <include>**/*TestSuite.java</include> |
| 39 | <include>**/*Test.java</include> |
| 40 | </includes> |
| 41 | </configuration> |
| 42 | </plugin> |
| 43 | <plugin> |
vinayakb | 5d0e459 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 44 | <groupId>org.apache.maven.plugins</groupId> |
| 45 | <artifactId>maven-clean-plugin</artifactId> |
| 46 | <version>2.4.1</version> |
| 47 | <configuration> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 48 | <filesets> |
| 49 | <fileset> |
| 50 | <directory>.</directory> |
| 51 | <includes> |
| 52 | <include>teststore*</include> |
| 53 | <include>edu*</include> |
| 54 | <include>actual*</include> |
| 55 | <include>build*</include> |
| 56 | <include>expect*</include> |
| 57 | <include>ClusterController*</include> |
| 58 | <include>edu.uci.*</include> |
| 59 | </includes> |
| 60 | </fileset> |
| 61 | </filesets> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | |
| 67 | <dependencies> |
| 68 | <dependency> |
| 69 | <groupId>edu.uci.ics.hyracks</groupId> |
| 70 | <artifactId>hyracks-dataflow-common</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 71 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 72 | <type>jar</type> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>junit</groupId> |
| 77 | <artifactId>junit</artifactId> |
| 78 | <version>3.8.1</version> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
buyingyi | 5df938f | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 82 | <groupId>edu.uci.ics.hyracks</groupId> |
| 83 | <artifactId>hyracks-hdfs-core</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 84 | <version>0.2.4</version> |
buyingyi | 5df938f | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 85 | <type>jar</type> |
| 86 | <scope>compile</scope> |
| 87 | </dependency> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 88 | </dependencies> |
| 89 | </project> |