buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +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-app</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> |
vinayakb | dfc7e99 | 2012-03-14 09:16:17 +0000 | [diff] [blame] | 39 | <program> |
| 40 | <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass> |
| 41 | <name>asterix-cli</name> |
| 42 | </program> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 43 | </programs> |
| 44 | <repositoryLayout>flat</repositoryLayout> |
| 45 | <repositoryName>lib</repositoryName> |
| 46 | </configuration> |
| 47 | <phase>package</phase> |
| 48 | <goals> |
| 49 | <goal>assemble</goal> |
| 50 | </goals> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <artifactId>maven-assembly-plugin</artifactId> |
| 56 | <version>2.2-beta-5</version> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <configuration> |
| 60 | <descriptors> |
| 61 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 62 | </descriptors> |
| 63 | </configuration> |
| 64 | <phase>package</phase> |
| 65 | <goals> |
| 66 | <goal>attached</goal> |
| 67 | </goals> |
| 68 | </execution> |
| 69 | </executions> |
| 70 | </plugin> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.maven.plugins</groupId> |
| 73 | <artifactId>maven-surefire-plugin</artifactId> |
RamanGrover29@gmail.com | 58cf330 | 2012-11-09 00:27:45 +0000 | [diff] [blame] | 74 | <version>2.8</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 75 | <configuration> |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 76 | <!-- doesn't work from m2eclipse, currently <additionalClasspathElements> |
| 77 | <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement> |
| 78 | </additionalClasspathElements> --> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 79 | <forkMode>pertest</forkMode> |
RamanGrover29@gmail.com | 58cf330 | 2012-11-09 00:27:45 +0000 | [diff] [blame] | 80 | <argLine>-enableassertions -Xmx${test.heap.size}m |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 81 | -Dfile.encoding=UTF-8 |
vinayakb | 63009ca | 2012-03-23 06:50:40 +0000 | [diff] [blame] | 82 | -Djava.util.logging.config.file=src/test/resources/logging.properties |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 83 | -Xdebug |
| 84 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 85 | <includes> |
| 86 | <include>**/*TestSuite.java</include> |
| 87 | <include>**/*Test.java</include> |
| 88 | </includes> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </build> |
| 93 | |
| 94 | <dependencies> |
| 95 | <dependency> |
| 96 | <groupId>edu.uci.ics.asterix</groupId> |
| 97 | <artifactId>asterix-algebra</artifactId> |
| 98 | <version>0.0.4-SNAPSHOT</version> |
| 99 | <scope>compile</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>javax.servlet</groupId> |
| 103 | <artifactId>servlet-api</artifactId> |
| 104 | <version>2.5</version> |
| 105 | <type>jar</type> |
| 106 | <scope>compile</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>org.eclipse.jetty</groupId> |
| 110 | <artifactId>jetty-server</artifactId> |
| 111 | <version>8.0.0.M2</version> |
| 112 | <type>jar</type> |
| 113 | <scope>compile</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.eclipse.jetty</groupId> |
| 117 | <artifactId>jetty-servlet</artifactId> |
| 118 | <version>8.0.0.M2</version> |
| 119 | <type>jar</type> |
| 120 | <scope>compile</scope> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>junit</groupId> |
| 124 | <artifactId>junit</artifactId> |
| 125 | <version>4.8.1</version> |
| 126 | <scope>test</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>edu.uci.ics.hyracks</groupId> |
| 130 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>edu.uci.ics.hyracks</groupId> |
| 134 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | ba4abf6 | 2013-02-01 01:19:43 +0000 | [diff] [blame] | 138 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 139 | </dependency> |
| 140 | <dependency> |
madhusudancs@gmail.com | 7585096 | 2013-02-07 12:02:03 +0000 | [diff] [blame] | 141 | <groupId>edu.uci.ics.hyracks</groupId> |
| 142 | <artifactId>hyracks-client</artifactId> |
madhusudancs@gmail.com | 7585096 | 2013-02-07 12:02:03 +0000 | [diff] [blame] | 143 | </dependency> |
| 144 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 145 | <groupId>edu.uci.ics.asterix</groupId> |
| 146 | <artifactId>asterix-aql</artifactId> |
| 147 | <version>0.0.4-SNAPSHOT</version> |
| 148 | <type>jar</type> |
| 149 | <scope>compile</scope> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>edu.uci.ics.asterix</groupId> |
| 153 | <artifactId>asterix-om</artifactId> |
| 154 | <version>0.0.4-SNAPSHOT</version> |
| 155 | <type>jar</type> |
| 156 | <scope>compile</scope> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>edu.uci.ics.asterix</groupId> |
| 160 | <artifactId>asterix-metadata</artifactId> |
| 161 | <version>0.0.4-SNAPSHOT</version> |
| 162 | <type>jar</type> |
| 163 | <scope>compile</scope> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>edu.uci.ics.asterix</groupId> |
| 167 | <artifactId>asterix-tools</artifactId> |
| 168 | <version>0.0.4-SNAPSHOT</version> |
| 169 | <type>jar</type> |
| 170 | <scope>compile</scope> |
| 171 | </dependency> |
| 172 | <dependency> |
ramangrover29 | 18bfcfe | 2012-04-30 18:17:21 +0000 | [diff] [blame] | 173 | <groupId>edu.uci.ics.asterix</groupId> |
| 174 | <artifactId>asterix-common</artifactId> |
| 175 | <version>0.0.4-SNAPSHOT</version> |
| 176 | <type>jar</type> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
| 179 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 180 | <groupId>com.kenai.nbpwr</groupId> |
| 181 | <artifactId>org-apache-commons-io</artifactId> |
| 182 | <version>1.3.1-201002241208</version> |
| 183 | <scope>test</scope> |
| 184 | </dependency> |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 185 | <dependency> |
| 186 | <groupId>org.apache.hadoop</groupId> |
| 187 | <artifactId>hadoop-core</artifactId> |
| 188 | <version>0.20.2</version> |
| 189 | <type>jar</type> |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 190 | </dependency> |
| 191 | <dependency> |
| 192 | <groupId>org.apache.hadoop</groupId> |
| 193 | <artifactId>hadoop-test</artifactId> |
| 194 | <version>0.20.2</version> |
| 195 | <type>jar</type> |
| 196 | <scope>test</scope> |
| 197 | </dependency> |
| 198 | <dependency> |
| 199 | <groupId>xerces</groupId> |
| 200 | <artifactId>xercesImpl</artifactId> |
| 201 | <version>2.9.1</version> |
| 202 | <type>jar</type> |
| 203 | <scope>test</scope> |
| 204 | </dependency> |
| 205 | <dependency> |
| 206 | <groupId>xalan</groupId> |
| 207 | <artifactId>xalan</artifactId> |
| 208 | <version>2.7.1</version> |
| 209 | <type>jar</type> |
| 210 | <scope>test</scope> |
| 211 | </dependency> |
khfaraaz82@gmail.com | d02d00f | 2012-09-26 02:08:33 +0000 | [diff] [blame] | 212 | <dependency> |
| 213 | <groupId>net.sourceforge.cobertura</groupId> |
| 214 | <artifactId>cobertura</artifactId> |
| 215 | <version>1.9.4</version> |
| 216 | </dependency> |
vinayakb | 93b7668 | 2012-10-06 03:38:51 +0000 | [diff] [blame] | 217 | <dependency> |
| 218 | <groupId>edu.uci.ics.asterix</groupId> |
| 219 | <artifactId>asterix-test-framework</artifactId> |
| 220 | <version>0.0.4-SNAPSHOT</version> |
| 221 | <scope>test</scope> |
| 222 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 223 | </dependencies> |
| 224 | |
| 225 | </project> |