Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [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> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 7 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 18 | <source>1.7</source> |
| 19 | <target>1.7</target> |
| 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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 74 | <version>2.8</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 75 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +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> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame^] | 80 | <argLine>-enableassertions -Xmx${test.heap.size}m |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 81 | -Dfile.encoding=UTF-8 |
| 82 | -Djava.util.logging.config.file=src/test/resources/logging.properties |
| 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> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame^] | 91 | <plugin> |
| 92 | <groupId>org.apache.maven.plugins</groupId> |
| 93 | <artifactId>maven-jar-plugin</artifactId> |
| 94 | <version>2.2</version> |
| 95 | <configuration> |
| 96 | <includes> |
| 97 | <include>**/*.class</include> |
| 98 | </includes> |
| 99 | </configuration> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <goals> |
| 103 | <goal>test-jar</goal> |
| 104 | </goals> |
| 105 | </execution> |
| 106 | </executions> |
| 107 | </plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 108 | </plugins> |
| 109 | </build> |
| 110 | |
| 111 | <dependencies> |
| 112 | <dependency> |
| 113 | <groupId>edu.uci.ics.asterix</groupId> |
| 114 | <artifactId>asterix-algebra</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 115 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 116 | <scope>compile</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>javax.servlet</groupId> |
| 120 | <artifactId>servlet-api</artifactId> |
| 121 | <version>2.5</version> |
| 122 | <type>jar</type> |
| 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.eclipse.jetty</groupId> |
| 127 | <artifactId>jetty-server</artifactId> |
| 128 | <version>8.0.0.M2</version> |
| 129 | <type>jar</type> |
| 130 | <scope>compile</scope> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>org.eclipse.jetty</groupId> |
| 134 | <artifactId>jetty-servlet</artifactId> |
| 135 | <version>8.0.0.M2</version> |
| 136 | <type>jar</type> |
| 137 | <scope>compile</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>junit</groupId> |
| 141 | <artifactId>junit</artifactId> |
| 142 | <version>4.8.1</version> |
| 143 | <scope>test</scope> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>edu.uci.ics.hyracks</groupId> |
| 147 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>edu.uci.ics.hyracks</groupId> |
| 151 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 155 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 156 | </dependency> |
| 157 | <dependency> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame^] | 158 | <groupId>edu.uci.ics.hyracks</groupId> |
| 159 | <artifactId>hyracks-client</artifactId> |
| 160 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 161 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 162 | <groupId>edu.uci.ics.asterix</groupId> |
| 163 | <artifactId>asterix-aql</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 164 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 165 | <type>jar</type> |
| 166 | <scope>compile</scope> |
| 167 | </dependency> |
| 168 | <dependency> |
| 169 | <groupId>edu.uci.ics.asterix</groupId> |
| 170 | <artifactId>asterix-om</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 171 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 172 | <type>jar</type> |
| 173 | <scope>compile</scope> |
| 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>edu.uci.ics.asterix</groupId> |
| 177 | <artifactId>asterix-metadata</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 178 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 179 | <type>jar</type> |
| 180 | <scope>compile</scope> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>edu.uci.ics.asterix</groupId> |
| 184 | <artifactId>asterix-tools</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 185 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 186 | <type>jar</type> |
| 187 | <scope>compile</scope> |
| 188 | </dependency> |
| 189 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 190 | <groupId>edu.uci.ics.asterix</groupId> |
| 191 | <artifactId>asterix-common</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 192 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 193 | <type>jar</type> |
| 194 | <scope>compile</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 197 | <groupId>com.kenai.nbpwr</groupId> |
| 198 | <artifactId>org-apache-commons-io</artifactId> |
| 199 | <version>1.3.1-201002241208</version> |
| 200 | <scope>test</scope> |
| 201 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 202 | <dependency> |
| 203 | <groupId>org.apache.hadoop</groupId> |
| 204 | <artifactId>hadoop-core</artifactId> |
| 205 | <version>0.20.2</version> |
| 206 | <type>jar</type> |
| 207 | </dependency> |
| 208 | <dependency> |
| 209 | <groupId>org.apache.hadoop</groupId> |
| 210 | <artifactId>hadoop-test</artifactId> |
| 211 | <version>0.20.2</version> |
| 212 | <type>jar</type> |
| 213 | <scope>test</scope> |
| 214 | </dependency> |
| 215 | <dependency> |
| 216 | <groupId>xerces</groupId> |
| 217 | <artifactId>xercesImpl</artifactId> |
| 218 | <version>2.9.1</version> |
| 219 | <type>jar</type> |
| 220 | <scope>test</scope> |
| 221 | </dependency> |
| 222 | <dependency> |
| 223 | <groupId>xalan</groupId> |
| 224 | <artifactId>xalan</artifactId> |
| 225 | <version>2.7.1</version> |
| 226 | <type>jar</type> |
| 227 | <scope>test</scope> |
| 228 | </dependency> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame^] | 229 | <dependency> |
| 230 | <groupId>net.sourceforge.cobertura</groupId> |
| 231 | <artifactId>cobertura</artifactId> |
| 232 | <version>1.9.4</version> |
| 233 | </dependency> |
| 234 | <dependency> |
| 235 | <groupId>edu.uci.ics.asterix</groupId> |
| 236 | <artifactId>asterix-test-framework</artifactId> |
| 237 | <version>0.0.5-SNAPSHOT</version> |
| 238 | <scope>test</scope> |
| 239 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 240 | </dependencies> |
| 241 | |
| 242 | </project> |