buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [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 | <parent> |
| 7 | <artifactId>pregelix</artifactId> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <version>0.2.10-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | |
| 12 | <artifactId>pregelix-benchmark</artifactId> |
| 13 | <name>pregelix-benchmark</name> |
| 14 | <url>http://maven.apache.org</url> |
buyingyi | 7b4cebf | 2013-09-14 14:21:18 -0700 | [diff] [blame] | 15 | |
| 16 | <build> |
| 17 | <plugins> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.maven.plugins</groupId> |
| 20 | <artifactId>maven-compiler-plugin</artifactId> |
| 21 | <version>2.0.2</version> |
| 22 | <configuration> |
| 23 | <source>1.7</source> |
| 24 | <target>1.7</target> |
| 25 | <fork>true</fork> |
| 26 | </configuration> |
| 27 | </plugin> |
buyingyi | 59d4e88 | 2013-09-20 18:10:13 -0700 | [diff] [blame] | 28 | |
| 29 | <plugin> |
| 30 | <artifactId>maven-assembly-plugin</artifactId> |
| 31 | <version>2.2-beta-5</version> |
| 32 | <configuration> |
| 33 | <descriptorRefs> |
| 34 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 35 | </descriptorRefs> |
| 36 | </configuration> |
| 37 | <executions> |
| 38 | <execution> |
| 39 | <id>make-my-jar-with-dependencies</id> |
| 40 | <phase>package</phase> |
| 41 | <goals> |
| 42 | <goal>single</goal> |
| 43 | </goals> |
| 44 | </execution> |
| 45 | </executions> |
| 46 | </plugin> |
buyingyi | 7b4cebf | 2013-09-14 14:21:18 -0700 | [diff] [blame] | 47 | </plugins> |
| 48 | </build> |
| 49 | |
| 50 | |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>junit</groupId> |
| 54 | <artifactId>junit</artifactId> |
| 55 | <version>3.8.1</version> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.giraph</groupId> |
| 60 | <artifactId>giraph-core</artifactId> |
| 61 | <version>1.0.0</version> |
| 62 | <scope>compile</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
buyingyi | 59d4e88 | 2013-09-20 18:10:13 -0700 | [diff] [blame] | 65 | <groupId>org.apache.giraph</groupId> |
| 66 | <artifactId>giraph-examples</artifactId> |
| 67 | <version>1.0.0</version> |
| 68 | <scope>compile</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 71 | <groupId>edu.uci.ics.hyracks</groupId> |
| 72 | <artifactId>hyracks-hdfs-core</artifactId> |
| 73 | <version>0.2.10-SNAPSHOT</version> |
| 74 | <type>jar</type> |
| 75 | <scope>compile</scope> |
| 76 | </dependency> |
| 77 | </dependencies> |
| 78 | </project> |