vinayakb | a9b0c5b | 2013-02-26 09:02:22 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <artifactId>pregelix-core</artifactId> |
| 5 | <packaging>jar</packaging> |
| 6 | <name>pregelix-core</name> |
| 7 | |
| 8 | <parent> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 9 | <groupId>edu.uci.ics.hyracks</groupId> |
| 10 | <artifactId>pregelix</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 11 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 12 | </parent> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 13 | |
| 14 | |
| 15 | <properties> |
| 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | </properties> |
| 18 | |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
vinayakb | 8480793 | 2012-11-20 02:31:24 +0000 | [diff] [blame] | 22 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 23 | <artifactId>maven-jar-plugin</artifactId> |
vinayakb | 8480793 | 2012-11-20 02:31:24 +0000 | [diff] [blame] | 24 | <version>2.3.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 25 | <executions> |
| 26 | <execution> |
| 27 | <id>balancer</id> |
| 28 | <goals> |
| 29 | <goal>jar</goal> |
| 30 | </goals> |
| 31 | <phase>package</phase> |
| 32 | <configuration> |
| 33 | <classifier>balancer</classifier> |
| 34 | <archive> |
| 35 | <manifest> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 36 | <MainClass>edu.uci.ics.pregelix.core.util.DataBalancer</MainClass> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 37 | </manifest> |
| 38 | </archive> |
| 39 | <includes> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 40 | <include>**/edu/uci/ics/pregelix/core/util/DataBalancer*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 41 | </includes> |
| 42 | </configuration> |
| 43 | </execution> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 44 | <execution> |
| 45 | <id>generator</id> |
| 46 | <goals> |
| 47 | <goal>jar</goal> |
| 48 | </goals> |
| 49 | <phase>package</phase> |
| 50 | <configuration> |
| 51 | <classifier>generator</classifier> |
| 52 | <archive> |
| 53 | <manifest> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 54 | <MainClass>edu.uci.ics.pregelix.core.util.DataGenerator</MainClass> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 55 | </manifest> |
| 56 | </archive> |
| 57 | <includes> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 58 | <include>**/edu/uci/ics/pregelix/core/util/DataGenerator*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 59 | </includes> |
| 60 | </configuration> |
| 61 | </execution> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 62 | </executions> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-compiler-plugin</artifactId> |
| 67 | <version>2.0.2</version> |
| 68 | <configuration> |
vinayakb | 9506d18 | 2013-03-22 08:20:32 +0000 | [diff] [blame] | 69 | <source>1.7</source> |
| 70 | <target>1.7</target> |
| 71 | <fork>true</fork> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 72 | </configuration> |
| 73 | </plugin> |
| 74 | <plugin> |
| 75 | <groupId>org.codehaus.mojo</groupId> |
| 76 | <artifactId>appassembler-maven-plugin</artifactId> |
vinayakb | 8480793 | 2012-11-20 02:31:24 +0000 | [diff] [blame] | 77 | <version>1.3</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 78 | <executions> |
| 79 | <execution> |
| 80 | <configuration> |
| 81 | <programs> |
| 82 | <program> |
| 83 | <mainClass>org.apache.hadoop.util.RunJar</mainClass> |
| 84 | <name>pregelix-obselete</name> |
| 85 | </program> |
| 86 | </programs> |
| 87 | <repositoryLayout>flat</repositoryLayout> |
| 88 | <repositoryName>lib</repositoryName> |
| 89 | </configuration> |
| 90 | <phase>package</phase> |
| 91 | <goals> |
| 92 | <goal>assemble</goal> |
| 93 | </goals> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <artifactId>maven-assembly-plugin</artifactId> |
| 99 | <version>2.2-beta-5</version> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <configuration> |
| 103 | <descriptors> |
| 104 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 105 | </descriptors> |
| 106 | </configuration> |
| 107 | <phase>package</phase> |
| 108 | <goals> |
| 109 | <goal>attached</goal> |
| 110 | </goals> |
| 111 | </execution> |
| 112 | </executions> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <artifactId>maven-resources-plugin</artifactId> |
| 116 | <version>2.5</version> |
| 117 | <executions> |
| 118 | <execution> |
| 119 | <id>copy-scripts</id> |
| 120 | <!-- here the phase you need --> |
| 121 | <phase>package</phase> |
| 122 | <goals> |
| 123 | <goal>copy-resources</goal> |
| 124 | </goals> |
| 125 | <configuration> |
| 126 | <outputDirectory>target/appassembler/bin</outputDirectory> |
| 127 | <resources> |
| 128 | <resource> |
| 129 | <directory>src/main/resources/scripts</directory> |
| 130 | </resource> |
| 131 | </resources> |
| 132 | </configuration> |
| 133 | </execution> |
| 134 | <execution> |
| 135 | <id>copy-conf</id> |
| 136 | <!-- here the phase you need --> |
| 137 | <phase>package</phase> |
| 138 | <goals> |
| 139 | <goal>copy-resources</goal> |
| 140 | </goals> |
| 141 | <configuration> |
| 142 | <outputDirectory>target/appassembler/conf</outputDirectory> |
| 143 | <resources> |
| 144 | <resource> |
| 145 | <directory>src/main/resources/conf</directory> |
| 146 | </resource> |
| 147 | </resources> |
| 148 | </configuration> |
| 149 | </execution> |
| 150 | </executions> |
| 151 | </plugin> |
| 152 | <plugin> |
| 153 | <groupId>org.apache.maven.plugins</groupId> |
| 154 | <artifactId>maven-surefire-plugin</artifactId> |
| 155 | <version>2.7.2</version> |
| 156 | <configuration> |
| 157 | <forkMode>pertest</forkMode> |
vinayakb | a9b0c5b | 2013-02-26 09:02:22 +0000 | [diff] [blame] | 158 | <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m |
| 159 | -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 160 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 161 | <includes> |
| 162 | <include>**/*TestSuite.java</include> |
| 163 | <include>**/*Test.java</include> |
| 164 | </includes> |
| 165 | </configuration> |
| 166 | </plugin> |
| 167 | <plugin> |
| 168 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 8480793 | 2012-11-20 02:31:24 +0000 | [diff] [blame] | 169 | <version>2.4.1</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 170 | <configuration> |
| 171 | <filesets> |
| 172 | <fileset> |
| 173 | <directory>.</directory> |
| 174 | <includes> |
| 175 | <include>teststore*</include> |
| 176 | <include>edu*</include> |
| 177 | <include>actual*</include> |
| 178 | <include>build*</include> |
| 179 | <include>expect*</include> |
| 180 | <include>ClusterController*</include> |
| 181 | </includes> |
| 182 | </fileset> |
| 183 | </filesets> |
| 184 | </configuration> |
| 185 | </plugin> |
| 186 | </plugins> |
| 187 | </build> |
| 188 | |
| 189 | <dependencies> |
| 190 | <dependency> |
| 191 | <groupId>junit</groupId> |
| 192 | <artifactId>junit</artifactId> |
| 193 | <version>4.8.1</version> |
| 194 | <scope>test</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 197 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 198 | <artifactId>pregelix-api</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 199 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 200 | <type>jar</type> |
| 201 | <scope>compile</scope> |
| 202 | </dependency> |
| 203 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 204 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 205 | <artifactId>pregelix-dataflow-std</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 206 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 207 | <type>jar</type> |
| 208 | <scope>compile</scope> |
| 209 | </dependency> |
| 210 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 211 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 212 | <artifactId>pregelix-dataflow</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 213 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 214 | <type>jar</type> |
| 215 | <scope>compile</scope> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>edu.uci.ics.hyracks</groupId> |
| 219 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 220 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 221 | <type>jar</type> |
| 222 | <scope>compile</scope> |
| 223 | </dependency> |
| 224 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 225 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 226 | <artifactId>pregelix-runtime</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 227 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 228 | <type>jar</type> |
| 229 | <scope>compile</scope> |
| 230 | </dependency> |
| 231 | <dependency> |
| 232 | <groupId>edu.uci.ics.hyracks</groupId> |
| 233 | <artifactId>hyracks-api</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 234 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 235 | <type>jar</type> |
| 236 | <scope>compile</scope> |
| 237 | </dependency> |
| 238 | <dependency> |
| 239 | <groupId>edu.uci.ics.hyracks</groupId> |
| 240 | <artifactId>hyracks-dataflow-common</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 241 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 242 | <type>jar</type> |
| 243 | <scope>compile</scope> |
| 244 | </dependency> |
| 245 | <dependency> |
| 246 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 247 | <artifactId>hyracks-data-std</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 248 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 249 | <type>jar</type> |
| 250 | <scope>compile</scope> |
| 251 | </dependency> |
| 252 | <dependency> |
| 253 | <groupId>edu.uci.ics.hyracks</groupId> |
| 254 | <artifactId>hyracks-storage-am-common</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 255 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 256 | <type>jar</type> |
| 257 | <scope>compile</scope> |
| 258 | </dependency> |
| 259 | <dependency> |
| 260 | <groupId>edu.uci.ics.hyracks</groupId> |
| 261 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 262 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 263 | <type>jar</type> |
| 264 | <scope>compile</scope> |
| 265 | </dependency> |
| 266 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 267 | <groupId>edu.uci.ics.hyracks</groupId> |
| 268 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 269 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 270 | <type>jar</type> |
| 271 | <scope>compile</scope> |
| 272 | </dependency> |
| 273 | <dependency> |
| 274 | <groupId>edu.uci.ics.hyracks</groupId> |
| 275 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 276 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 277 | <type>jar</type> |
| 278 | <scope>compile</scope> |
| 279 | </dependency> |
| 280 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 281 | <groupId>com.kenai.nbpwr</groupId> |
| 282 | <artifactId>org-apache-commons-io</artifactId> |
| 283 | <version>1.3.1-201002241208</version> |
| 284 | <type>nbm</type> |
| 285 | <scope>test</scope> |
| 286 | </dependency> |
| 287 | <dependency> |
| 288 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 289 | <artifactId>hyracks-integration-tests</artifactId> |
buyingyi | 25c53e5 | 2013-01-14 23:12:21 +0000 | [diff] [blame] | 290 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 291 | <scope>test</scope> |
| 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>com.sun.jersey</groupId> |
| 295 | <artifactId>jersey</artifactId> |
| 296 | <version>0.8-ea</version> |
| 297 | <type>jar</type> |
| 298 | <scope>test</scope> |
| 299 | </dependency> |
| 300 | <dependency> |
| 301 | <groupId>javax.servlet</groupId> |
| 302 | <artifactId>javax.servlet-api</artifactId> |
| 303 | <version>3.0.1</version> |
| 304 | <type>jar</type> |
| 305 | <scope>compile</scope> |
| 306 | </dependency> |
| 307 | <dependency> |
| 308 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 309 | <artifactId>hyracks-ipc</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 310 | <version>0.2.3-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 311 | <type>jar</type> |
| 312 | <scope>compile</scope> |
| 313 | </dependency> |
| 314 | </dependencies> |
| 315 | </project> |