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