zheilbron | 5e741de | 2013-02-16 21:34:39 +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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>asterix</artifactId> |
| 6 | <groupId>edu.uci.ics.asterix</groupId> |
| 7 | <version>0.0.4-SNAPSHOT</version> |
| 8 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 9 | <artifactId>asterix-external-data</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 10 | |
| 11 | <build> |
| 12 | <plugins> |
| 13 | <plugin> |
| 14 | <groupId>org.apache.maven.plugins</groupId> |
| 15 | <artifactId>maven-compiler-plugin</artifactId> |
| 16 | <version>2.0.2</version> |
| 17 | <configuration> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 18 | <source>1.7</source> |
| 19 | <target>1.7</target> |
buyingyi | 8a61a18 | 2013-03-03 08:41:25 +0000 | [diff] [blame] | 20 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </configuration> |
| 22 | </plugin> |
| 23 | <plugin> |
| 24 | <groupId>org.codehaus.mojo</groupId> |
| 25 | <artifactId>appassembler-maven-plugin</artifactId> |
| 26 | <version>1.0</version> |
| 27 | <executions> |
| 28 | <execution> |
| 29 | <configuration> |
| 30 | <programs> |
| 31 | <program> |
| 32 | <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass> |
| 33 | <name>asterix-web</name> |
| 34 | </program> |
| 35 | <program> |
| 36 | <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass> |
| 37 | <name>asterix-cmd</name> |
| 38 | </program> |
| 39 | </programs> |
| 40 | <repositoryLayout>flat</repositoryLayout> |
| 41 | <repositoryName>lib</repositoryName> |
| 42 | </configuration> |
| 43 | <phase>package</phase> |
| 44 | <goals> |
| 45 | <goal>assemble</goal> |
| 46 | </goals> |
| 47 | </execution> |
| 48 | </executions> |
| 49 | </plugin> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-surefire-plugin</artifactId> |
| 53 | <version>2.7.2</version> |
| 54 | <configuration> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 55 | <!-- doesn't work from m2eclipse, currently <additionalClasspathElements> |
| 56 | <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement> |
| 57 | </additionalClasspathElements> --> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 58 | <forkMode>pertest</forkMode> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 59 | <argLine>-enableassertions -Xmx${test.heap.size}m |
| 60 | -Dfile.encoding=UTF-8 |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 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 | </plugins> |
| 69 | </build> |
| 70 | |
| 71 | <dependencies> |
| 72 | <dependency> |
| 73 | <groupId>javax.servlet</groupId> |
| 74 | <artifactId>servlet-api</artifactId> |
| 75 | <version>2.5</version> |
| 76 | <type>jar</type> |
| 77 | <scope>compile</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>junit</groupId> |
| 81 | <artifactId>junit</artifactId> |
| 82 | <version>4.8.1</version> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 86 | <groupId>edu.uci.ics.asterix</groupId> |
| 87 | <artifactId>asterix-om</artifactId> |
| 88 | <version>0.0.4-SNAPSHOT</version> |
| 89 | <type>jar</type> |
| 90 | <scope>compile</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>edu.uci.ics.asterix</groupId> |
| 94 | <artifactId>asterix-runtime</artifactId> |
| 95 | <version>0.0.4-SNAPSHOT</version> |
| 96 | <type>jar</type> |
| 97 | <scope>compile</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>com.kenai.nbpwr</groupId> |
| 101 | <artifactId>org-apache-commons-io</artifactId> |
| 102 | <version>1.3.1-201002241208</version> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 105 | <dependency> |
| 106 | <groupId>org.twitter4j</groupId> |
| 107 | <artifactId>twitter4j-core</artifactId> |
| 108 | <version>2.2.3</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.apache.hadoop</groupId> |
| 112 | <artifactId>hadoop-core</artifactId> |
| 113 | <version>0.20.2</version> |
| 114 | <type>jar</type> |
| 115 | <scope>compile</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
| 118 | <groupId>net.java.dev.rome</groupId> |
| 119 | <artifactId>rome-fetcher</artifactId> |
| 120 | <version>1.0.0</version> |
| 121 | <type>jar</type> |
| 122 | <scope>compile</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>rome</groupId> |
| 126 | <artifactId>rome</artifactId> |
| 127 | <version>1.0.1-modified-01</version> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>edu.uci.ics.hyracks</groupId> |
| 131 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>jdom</groupId> |
| 135 | <artifactId>jdom</artifactId> |
| 136 | <version>1.0</version> |
| 137 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 138 | </dependencies> |
| 139 | |
| 140 | </project> |