ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 1 | <!-- ! Copyright 2009-2013 by The Regents of the University of California |
| 2 | ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may |
| 3 | not use this file except in compliance with the License. ! you may obtain |
| 4 | a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0 |
| 5 | ! ! Unless required by applicable law or agreed to in writing, software ! |
| 6 | distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT |
| 7 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the |
| 8 | License for the specific language governing permissions and ! limitations |
| 9 | under the License. ! --> |
Vinayak Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 10 | <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"> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <parent> |
| 13 | <artifactId>asterix</artifactId> |
| 14 | <groupId>edu.uci.ics.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 15 | <version>0.8.7-SNAPSHOT</version> |
Chris Hillery | cdfcb92 | 2014-02-07 03:05:02 -0800 | [diff] [blame] | 16 | </parent> |
| 17 | <artifactId>asterix-app</artifactId> |
| 18 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.apache.maven.plugins</groupId> |
| 23 | <artifactId>maven-compiler-plugin</artifactId> |
| 24 | <version>2.0.2</version> |
| 25 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 26 | <source>1.7</source> |
| 27 | <target>1.7</target> |
| 28 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 29 | </configuration> |
| 30 | </plugin> |
| 31 | <plugin> |
| 32 | <groupId>org.codehaus.mojo</groupId> |
| 33 | <artifactId>appassembler-maven-plugin</artifactId> |
| 34 | <version>1.0</version> |
| 35 | <executions> |
| 36 | <execution> |
| 37 | <configuration> |
| 38 | <programs> |
| 39 | <program> |
| 40 | <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass> |
| 41 | <name>asterix-web</name> |
| 42 | </program> |
| 43 | <program> |
| 44 | <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass> |
| 45 | <name>asterix-cmd</name> |
| 46 | </program> |
vinayakb | dfc7e99 | 2012-03-14 09:16:17 +0000 | [diff] [blame] | 47 | <program> |
| 48 | <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass> |
| 49 | <name>asterix-cli</name> |
| 50 | </program> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 51 | </programs> |
| 52 | <repositoryLayout>flat</repositoryLayout> |
| 53 | <repositoryName>lib</repositoryName> |
| 54 | </configuration> |
| 55 | <phase>package</phase> |
| 56 | <goals> |
| 57 | <goal>assemble</goal> |
| 58 | </goals> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | <plugin> |
| 63 | <artifactId>maven-assembly-plugin</artifactId> |
| 64 | <version>2.2-beta-5</version> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <configuration> |
| 68 | <descriptors> |
| 69 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 70 | </descriptors> |
| 71 | </configuration> |
| 72 | <phase>package</phase> |
| 73 | <goals> |
| 74 | <goal>attached</goal> |
| 75 | </goals> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 79 | </plugins> |
| 80 | </build> |
| 81 | |
| 82 | <dependencies> |
| 83 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 84 | <groupId>javax.servlet</groupId> |
| 85 | <artifactId>servlet-api</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 86 | <type>jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.eclipse.jetty</groupId> |
| 90 | <artifactId>jetty-server</artifactId> |
| 91 | <version>8.0.0.M2</version> |
| 92 | <type>jar</type> |
| 93 | <scope>compile</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.eclipse.jetty</groupId> |
| 97 | <artifactId>jetty-servlet</artifactId> |
| 98 | <version>8.0.0.M2</version> |
| 99 | <type>jar</type> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 103 | <groupId>edu.uci.ics.hyracks</groupId> |
| 104 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>edu.uci.ics.hyracks</groupId> |
| 108 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 112 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 115 | <groupId>edu.uci.ics.hyracks</groupId> |
| 116 | <artifactId>hyracks-client</artifactId> |
| 117 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 118 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 119 | <groupId>edu.uci.ics.asterix</groupId> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 120 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 121 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 122 | <scope>compile</scope> |
| 123 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 124 | <dependency> |
| 125 | <groupId>edu.uci.ics.asterix</groupId> |
| 126 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 127 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 128 | <type>jar</type> |
| 129 | <scope>compile</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>edu.uci.ics.asterix</groupId> |
| 133 | <artifactId>asterix-om</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 134 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 135 | <type>jar</type> |
| 136 | <scope>compile</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>edu.uci.ics.asterix</groupId> |
| 140 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 141 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 142 | <type>jar</type> |
| 143 | <scope>compile</scope> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>edu.uci.ics.asterix</groupId> |
| 147 | <artifactId>asterix-tools</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 148 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 149 | <type>jar</type> |
| 150 | <scope>compile</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 153 | <groupId>edu.uci.ics.asterix</groupId> |
| 154 | <artifactId>asterix-common</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 155 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 156 | <type>jar</type> |
| 157 | <scope>compile</scope> |
| 158 | </dependency> |
| 159 | <dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 160 | <groupId>edu.uci.ics.asterix</groupId> |
| 161 | <artifactId>asterix-common</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 162 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 163 | <type>test-jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 164 | <scope>test</scope> |
| 165 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 166 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 167 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 168 | <scope>test</scope> </dependency> --> |
| 169 | <dependency> |
| 170 | <groupId>edu.uci.ics.asterix</groupId> |
| 171 | <artifactId>asterix-transactions</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 172 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 173 | <scope>compile</scope> |
| 174 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 175 | <dependency> |
| 176 | <groupId>org.apache.hadoop</groupId> |
| 177 | <artifactId>hadoop-core</artifactId> |
| 178 | <version>0.20.2</version> |
| 179 | <type>jar</type> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>org.apache.hadoop</groupId> |
| 183 | <artifactId>hadoop-test</artifactId> |
| 184 | <version>0.20.2</version> |
| 185 | <type>jar</type> |
| 186 | <scope>test</scope> |
| 187 | </dependency> |
| 188 | <dependency> |
| 189 | <groupId>xerces</groupId> |
| 190 | <artifactId>xercesImpl</artifactId> |
| 191 | <version>2.9.1</version> |
| 192 | <type>jar</type> |
| 193 | <scope>test</scope> |
| 194 | </dependency> |
| 195 | <dependency> |
| 196 | <groupId>xalan</groupId> |
| 197 | <artifactId>xalan</artifactId> |
| 198 | <version>2.7.1</version> |
| 199 | <type>jar</type> |
| 200 | <scope>test</scope> |
| 201 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 202 | <dependency> |
| 203 | <groupId>edu.uci.ics.asterix</groupId> |
| 204 | <artifactId>asterix-test-framework</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 205 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 206 | <scope>test</scope> |
| 207 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 208 | </dependencies> |
| 209 | |
| 210 | </project> |