buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <artifactId>pregelix-api</artifactId> |
| 7 | <name>pregelix-api</name> |
| 8 | |
| 9 | <parent> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame^] | 10 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 11 | <artifactId>pregelix</artifactId> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame^] | 12 | <version>0.2.2-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 13 | </parent> |
| 14 | |
| 15 | <properties> |
| 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | </properties> |
| 18 | |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.apache.maven.plugins</groupId> |
| 23 | <artifactId>maven-compiler-plugin</artifactId> |
| 24 | <version>2.0.2</version> |
| 25 | <configuration> |
| 26 | <source>1.6</source> |
| 27 | <target>1.6</target> |
| 28 | </configuration> |
| 29 | </plugin> |
| 30 | <plugin> |
| 31 | <groupId>org.apache.maven.plugins</groupId> |
| 32 | <artifactId>maven-assembly-plugin</artifactId> |
| 33 | <version>2.2</version> |
| 34 | <configuration> |
| 35 | <outputDirectory>target</outputDirectory> |
| 36 | <descriptorRefs> |
| 37 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 38 | </descriptorRefs> |
| 39 | </configuration> |
| 40 | </plugin> |
| 41 | <plugin> |
| 42 | <groupId>org.apache.maven.plugins</groupId> |
| 43 | <artifactId>maven-surefire-plugin</artifactId> |
| 44 | <version>2.6</version> |
| 45 | <configuration> |
| 46 | <systemProperties> |
| 47 | <property> |
| 48 | <name>prop.jarLocation</name> |
| 49 | <value>target/pregelix-example-${project.version}-jar-with-dependencies.jar</value> |
| 50 | </property> |
| 51 | </systemProperties> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-surefire-plugin</artifactId> |
| 57 | <version>2.7.2</version> |
| 58 | <configuration> |
| 59 | <forkMode>pertest</forkMode> |
| 60 | <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8 |
| 61 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 62 | <includes> |
| 63 | <include>**/*TestSuite.java</include> |
| 64 | <include>**/*Test.java</include> |
| 65 | </includes> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <artifactId>maven-clean-plugin</artifactId> |
| 70 | <configuration> |
| 71 | <filesets> |
| 72 | <fileset> |
| 73 | <directory>.</directory> |
| 74 | <includes> |
| 75 | <include>teststore*</include> |
| 76 | <include>edu*</include> |
| 77 | <include>actual*</include> |
| 78 | <include>build*</include> |
| 79 | <include>expect*</include> |
| 80 | <include>ClusterController*</include> |
| 81 | <include>edu.uci.*</include> |
| 82 | </includes> |
| 83 | </fileset> |
| 84 | </filesets> |
| 85 | </configuration> |
| 86 | </plugin> |
| 87 | </plugins> |
| 88 | </build> |
| 89 | |
| 90 | <dependencies> |
| 91 | <dependency> |
| 92 | <groupId>edu.uci.ics.hyracks</groupId> |
| 93 | <artifactId>hyracks-dataflow-common</artifactId> |
| 94 | <version>0.2.2-SNAPSHOT</version> |
| 95 | <type>jar</type> |
| 96 | <scope>compile</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>junit</groupId> |
| 100 | <artifactId>junit</artifactId> |
| 101 | <version>3.8.1</version> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.hadoop</groupId> |
| 106 | <artifactId>hadoop-core</artifactId> |
| 107 | <version>0.20.2</version> |
| 108 | <type>jar</type> |
| 109 | <scope>compile</scope> |
| 110 | </dependency> |
| 111 | </dependencies> |
| 112 | </project> |