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> |
| 9 | <groupId>edu.uci.ics.asterix</groupId> |
| 10 | <artifactId>asterix-app</artifactId> |
| 11 | <version>0.0.4-SNAPSHOT</version> |
| 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
| 18 | <version>2.0.2</version> |
| 19 | <configuration> |
| 20 | <source>1.6</source> |
| 21 | <target>1.6</target> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | <plugin> |
| 25 | <groupId>org.codehaus.mojo</groupId> |
| 26 | <artifactId>appassembler-maven-plugin</artifactId> |
| 27 | <version>1.0</version> |
| 28 | <executions> |
| 29 | <execution> |
| 30 | <configuration> |
| 31 | <programs> |
| 32 | <program> |
| 33 | <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass> |
| 34 | <name>asterix-web</name> |
| 35 | </program> |
| 36 | <program> |
| 37 | <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass> |
| 38 | <name>asterix-cmd</name> |
| 39 | </program> |
vinayakb | dfc7e99 | 2012-03-14 09:16:17 +0000 | [diff] [blame] | 40 | <program> |
| 41 | <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass> |
| 42 | <name>asterix-cli</name> |
| 43 | </program> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 44 | </programs> |
| 45 | <repositoryLayout>flat</repositoryLayout> |
| 46 | <repositoryName>lib</repositoryName> |
| 47 | </configuration> |
| 48 | <phase>package</phase> |
| 49 | <goals> |
| 50 | <goal>assemble</goal> |
| 51 | </goals> |
| 52 | </execution> |
| 53 | </executions> |
| 54 | </plugin> |
| 55 | <plugin> |
| 56 | <artifactId>maven-assembly-plugin</artifactId> |
| 57 | <version>2.2-beta-5</version> |
| 58 | <executions> |
| 59 | <execution> |
| 60 | <configuration> |
| 61 | <descriptors> |
| 62 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 63 | </descriptors> |
| 64 | </configuration> |
| 65 | <phase>package</phase> |
| 66 | <goals> |
| 67 | <goal>attached</goal> |
| 68 | </goals> |
| 69 | </execution> |
| 70 | </executions> |
| 71 | </plugin> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.maven.plugins</groupId> |
| 74 | <artifactId>maven-surefire-plugin</artifactId> |
| 75 | <version>2.7.2</version> |
| 76 | <configuration> |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 77 | <!-- doesn't work from m2eclipse, currently <additionalClasspathElements> |
| 78 | <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement> |
| 79 | </additionalClasspathElements> --> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 80 | <forkMode>pertest</forkMode> |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 81 | <argLine>-enableassertions -Xmx${test.heap.size}m |
| 82 | -Dfile.encoding=UTF-8 |
vinayakb | 63009ca | 2012-03-23 06:50:40 +0000 | [diff] [blame] | 83 | -Djava.util.logging.config.file=src/test/resources/logging.properties |
buyingyi | 8f0fa33 | 2012-04-25 21:45:12 +0000 | [diff] [blame] | 84 | -Xdebug |
| 85 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 86 | <includes> |
| 87 | <include>**/*TestSuite.java</include> |
| 88 | <include>**/*Test.java</include> |
| 89 | </includes> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | </plugins> |
| 93 | </build> |
| 94 | |
| 95 | <dependencies> |
| 96 | <dependency> |
| 97 | <groupId>edu.uci.ics.asterix</groupId> |
| 98 | <artifactId>asterix-algebra</artifactId> |
| 99 | <version>0.0.4-SNAPSHOT</version> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>javax.servlet</groupId> |
| 104 | <artifactId>servlet-api</artifactId> |
| 105 | <version>2.5</version> |
| 106 | <type>jar</type> |
| 107 | <scope>compile</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.eclipse.jetty</groupId> |
| 111 | <artifactId>jetty-server</artifactId> |
| 112 | <version>8.0.0.M2</version> |
| 113 | <type>jar</type> |
| 114 | <scope>compile</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.eclipse.jetty</groupId> |
| 118 | <artifactId>jetty-servlet</artifactId> |
| 119 | <version>8.0.0.M2</version> |
| 120 | <type>jar</type> |
| 121 | <scope>compile</scope> |
| 122 | </dependency> |
| 123 | <dependency> |
| 124 | <groupId>junit</groupId> |
| 125 | <artifactId>junit</artifactId> |
| 126 | <version>4.8.1</version> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>edu.uci.ics.hyracks</groupId> |
| 131 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | f5ee3b8 | 2012-03-23 01:09:46 +0000 | [diff] [blame] | 132 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>edu.uci.ics.hyracks</groupId> |
| 136 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | f5ee3b8 | 2012-03-23 01:09:46 +0000 | [diff] [blame] | 137 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>edu.uci.ics.hyracks</groupId> |
| 141 | <artifactId>hyracks-algebricks-compiler</artifactId> |
vinayakb | f5ee3b8 | 2012-03-23 01:09:46 +0000 | [diff] [blame] | 142 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 143 | </dependency> |
| 144 | <dependency> |
| 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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 212 | </dependencies> |
| 213 | |
| 214 | </project> |