anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 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/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>edu.uci.ics.pregelix</groupId> |
| 5 | <artifactId>genomix-pregelix</artifactId> |
| 6 | <version>0.2.2</version> |
| 7 | <packaging>jar</packaging> |
| 8 | <name>genomix-pregelix</name> |
| 9 | |
| 10 | <properties> |
| 11 | <jvm.extraargs/> |
| 12 | </properties> |
| 13 | |
| 14 | <profiles> |
| 15 | <profile> |
| 16 | <id>macosx</id> |
| 17 | <activation> |
| 18 | <os> |
| 19 | <name>mac os x</name> |
| 20 | </os> |
| 21 | <jdk>1.7</jdk> |
| 22 | </activation> |
| 23 | <properties> |
| 24 | <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs> |
| 25 | </properties> |
| 26 | </profile> |
| 27 | </profiles> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-compiler-plugin</artifactId> |
| 34 | <version>2.0.2</version> |
| 35 | <configuration> |
| 36 | <source>1.6</source> |
| 37 | <target>1.6</target> |
| 38 | </configuration> |
| 39 | </plugin> |
| 40 | <plugin> |
| 41 | <artifactId>maven-assembly-plugin</artifactId> |
| 42 | <configuration> |
| 43 | <descriptorRefs> |
| 44 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 45 | </descriptorRefs> |
| 46 | </configuration> |
| 47 | <executions> |
| 48 | <execution> |
| 49 | <id>make-my-jar-with-dependencies</id> |
| 50 | <phase>package</phase> |
| 51 | <goals> |
| 52 | <goal>single</goal> |
| 53 | </goals> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-surefire-plugin</artifactId> |
| 60 | <version>2.7.2</version> |
| 61 | <configuration> |
| 62 | <forkMode>pertest</forkMode> |
| 63 | <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8 |
| 64 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 65 | <includes> |
| 66 | <include>**/*TestSuite.java</include> |
| 67 | <include>**/*Test.java</include> |
| 68 | </includes> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | <plugin> |
| 72 | <artifactId>maven-clean-plugin</artifactId> |
| 73 | <configuration> |
| 74 | <filesets> |
| 75 | <fileset> |
| 76 | <directory>.</directory> |
| 77 | <includes> |
| 78 | <include>teststore*</include> |
| 79 | <include>edu*</include> |
| 80 | <include>actual*</include> |
| 81 | <include>build*</include> |
| 82 | <include>expect*</include> |
| 83 | <include>ClusterController*</include> |
| 84 | <include>edu.uci.*</include> |
| 85 | </includes> |
| 86 | </fileset> |
| 87 | </filesets> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
| 92 | |
| 93 | <dependencies> |
| 94 | <dependency> |
| 95 | <groupId>edu.uci.ics.hyracks</groupId> |
| 96 | <artifactId>pregelix-core</artifactId> |
| 97 | <version>0.2.2</version> |
| 98 | <type>jar</type> |
| 99 | <scope>compile</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>edu.uci.ics.hyracks</groupId> |
| 103 | <artifactId>pregelix-example</artifactId> |
| 104 | <version>0.2.2</version> |
| 105 | <type>jar</type> |
| 106 | <scope>compile</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>junit</groupId> |
| 110 | <artifactId>junit</artifactId> |
| 111 | <version>4.8.1</version> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | </dependencies> |
| 115 | |
| 116 | <scm> |
| 117 | <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection> |
| 118 | <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection> |
| 119 | <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url> |
| 120 | </scm> |
| 121 | |
| 122 | <distributionManagement> |
| 123 | <repository> |
| 124 | <id>hyracks-releases</id> |
| 125 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 126 | </repository> |
| 127 | <snapshotRepository> |
| 128 | <id>hyracks-snapshots</id> |
| 129 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 130 | </snapshotRepository> |
| 131 | </distributionManagement> |
| 132 | |
| 133 | <reporting> |
| 134 | <plugins> |
| 135 | <plugin> |
| 136 | <groupId>org.apache.maven.plugins</groupId> |
| 137 | <artifactId>maven-changelog-plugin</artifactId> |
| 138 | </plugin> |
| 139 | </plugins> |
| 140 | </reporting> |
| 141 | |
| 142 | <repositories> |
| 143 | <repository> |
| 144 | <id>hyracks-public</id> |
| 145 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 146 | </repository> |
| 147 | <repository> |
| 148 | <id>jboss-public</id> |
| 149 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 150 | </repository> |
| 151 | </repositories> |
| 152 | |
| 153 | <pluginRepositories> |
| 154 | <pluginRepository> |
| 155 | <id>hyracks-public</id> |
| 156 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 157 | <releases> |
| 158 | <updatePolicy>always</updatePolicy> |
| 159 | </releases> |
| 160 | </pluginRepository> |
| 161 | </pluginRepositories> |
| 162 | </project> |
| 163 | |
| 164 | |