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> |
anbangx | 9ce8742 | 2013-04-04 02:03:48 +0000 | [diff] [blame] | 6 | <packaging>jar</packaging> |
buyingyi | 6dbd752 | 2013-04-15 21:01:55 -0700 | [diff] [blame] | 7 | <version>0.2.5-SNAPSHOT</version> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 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> |
anbangx | 562c2fc | 2013-03-13 20:59:25 +0000 | [diff] [blame] | 36 | <source>1.7</source> |
| 37 | <target>1.7</target> |
| 38 | <fork>true</fork> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 39 | </configuration> |
| 40 | </plugin> |
| 41 | <plugin> |
| 42 | <artifactId>maven-assembly-plugin</artifactId> |
| 43 | <configuration> |
| 44 | <descriptorRefs> |
| 45 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 46 | </descriptorRefs> |
| 47 | </configuration> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <id>make-my-jar-with-dependencies</id> |
| 51 | <phase>package</phase> |
| 52 | <goals> |
| 53 | <goal>single</goal> |
| 54 | </goals> |
| 55 | </execution> |
| 56 | </executions> |
| 57 | </plugin> |
anbangx | 9ce8742 | 2013-04-04 02:03:48 +0000 | [diff] [blame] | 58 | <plugin> |
| 59 | <groupId>org.codehaus.mojo</groupId> |
| 60 | <artifactId>appassembler-maven-plugin</artifactId> |
| 61 | <version>1.3</version> |
| 62 | <executions> |
| 63 | <execution> |
| 64 | <configuration> |
| 65 | <programs> |
| 66 | <program> |
anbangx | f5ff29d | 2013-04-04 07:31:26 +0000 | [diff] [blame] | 67 | <mainClass>edu.uci.ics.genomix.pregelix.example.Client</mainClass> |
anbangx | 9ce8742 | 2013-04-04 02:03:48 +0000 | [diff] [blame] | 68 | <name>pregelix</name> |
| 69 | </program> |
| 70 | </programs> |
| 71 | <repositoryLayout>flat</repositoryLayout> |
| 72 | <repositoryName>lib</repositoryName> |
| 73 | </configuration> |
| 74 | <phase>package</phase> |
| 75 | <goals> |
| 76 | <goal>assemble</goal> |
| 77 | </goals> |
| 78 | </execution> |
| 79 | </executions> |
| 80 | </plugin> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 81 | <plugin> |
| 82 | <groupId>org.apache.maven.plugins</groupId> |
| 83 | <artifactId>maven-surefire-plugin</artifactId> |
| 84 | <version>2.7.2</version> |
| 85 | <configuration> |
| 86 | <forkMode>pertest</forkMode> |
| 87 | <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8 |
| 88 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 89 | <includes> |
| 90 | <include>**/*TestSuite.java</include> |
| 91 | <include>**/*Test.java</include> |
| 92 | </includes> |
| 93 | </configuration> |
| 94 | </plugin> |
| 95 | <plugin> |
| 96 | <artifactId>maven-clean-plugin</artifactId> |
| 97 | <configuration> |
| 98 | <filesets> |
| 99 | <fileset> |
| 100 | <directory>.</directory> |
| 101 | <includes> |
| 102 | <include>teststore*</include> |
| 103 | <include>edu*</include> |
| 104 | <include>actual*</include> |
| 105 | <include>build*</include> |
| 106 | <include>expect*</include> |
| 107 | <include>ClusterController*</include> |
| 108 | <include>edu.uci.*</include> |
| 109 | </includes> |
| 110 | </fileset> |
| 111 | </filesets> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | </plugins> |
| 115 | </build> |
| 116 | |
| 117 | <dependencies> |
| 118 | <dependency> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 119 | <groupId>junit</groupId> |
| 120 | <artifactId>junit</artifactId> |
| 121 | <version>4.8.1</version> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
anbangx | 648cedf | 2013-03-07 17:07:13 +0000 | [diff] [blame] | 124 | <dependency> |
| 125 | <groupId>edu.uci.ics.hyracks</groupId> |
| 126 | <artifactId>pregelix-core</artifactId> |
buyingyi | 6dbd752 | 2013-04-15 21:01:55 -0700 | [diff] [blame] | 127 | <version>0.2.5-SNAPSHOT</version> |
anbangx | 648cedf | 2013-03-07 17:07:13 +0000 | [diff] [blame] | 128 | <type>jar</type> |
| 129 | <scope>compile</scope> |
| 130 | </dependency> |
anbangx | 69e64e4 | 2013-03-31 02:41:50 +0000 | [diff] [blame] | 131 | <dependency> |
| 132 | <groupId>edu.uci.ics.hyracks</groupId> |
| 133 | <artifactId>genomix-data</artifactId> |
buyingyi | 6dbd752 | 2013-04-15 21:01:55 -0700 | [diff] [blame] | 134 | <version>0.2.5-SNAPSHOT</version> |
anbangx | 69e64e4 | 2013-03-31 02:41:50 +0000 | [diff] [blame] | 135 | <type>jar</type> |
| 136 | <scope>compile</scope> |
| 137 | </dependency> |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 138 | </dependencies> |
| 139 | |
| 140 | <scm> |
| 141 | <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</connection> |
| 142 | <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack/pregelix</developerConnection> |
| 143 | <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack/pregelix</url> |
| 144 | </scm> |
| 145 | |
| 146 | <distributionManagement> |
| 147 | <repository> |
| 148 | <id>hyracks-releases</id> |
| 149 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 150 | </repository> |
| 151 | <snapshotRepository> |
| 152 | <id>hyracks-snapshots</id> |
| 153 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 154 | </snapshotRepository> |
| 155 | </distributionManagement> |
| 156 | |
| 157 | <reporting> |
| 158 | <plugins> |
| 159 | <plugin> |
| 160 | <groupId>org.apache.maven.plugins</groupId> |
| 161 | <artifactId>maven-changelog-plugin</artifactId> |
| 162 | </plugin> |
| 163 | </plugins> |
| 164 | </reporting> |
| 165 | |
| 166 | <repositories> |
| 167 | <repository> |
| 168 | <id>hyracks-public</id> |
| 169 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 170 | </repository> |
| 171 | <repository> |
| 172 | <id>jboss-public</id> |
| 173 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 174 | </repository> |
| 175 | </repositories> |
| 176 | |
| 177 | <pluginRepositories> |
| 178 | <pluginRepository> |
| 179 | <id>hyracks-public</id> |
| 180 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 181 | <releases> |
| 182 | <updatePolicy>always</updatePolicy> |
| 183 | </releases> |
| 184 | </pluginRepository> |
| 185 | </pluginRepositories> |
| 186 | </project> |
| 187 | |
| 188 | |