Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 20 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 22 | <artifactId>asterix-tools</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 23 | |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.maven.plugins</groupId> |
| 28 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame^] | 29 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 30 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 31 | <source>1.7</source> |
| 32 | <target>1.7</target> |
| 33 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 34 | </configuration> |
| 35 | </plugin> |
| 36 | <plugin> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 37 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame^] | 38 | <version>2.4</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 39 | <executions> |
| 40 | <execution> |
| 41 | <id>aqlclient</id> |
| 42 | <goals> |
| 43 | <goal>jar</goal> |
| 44 | </goals> |
| 45 | <phase>package</phase> |
| 46 | <configuration> |
| 47 | <classifier>aqlclient</classifier> |
| 48 | <archive> |
| 49 | <manifest> |
| 50 | <MainClass>edu.uci.ics.asterix.tools.aqlclient.AqlClient</MainClass> |
| 51 | </manifest> |
| 52 | </archive> |
| 53 | <includes> |
| 54 | <include>**/uci/ics/asterix/tools/aqlclient/*</include> |
| 55 | </includes> |
| 56 | </configuration> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | </plugin> |
| 60 | <plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 61 | <groupId>org.codehaus.mojo</groupId> |
| 62 | <artifactId>appassembler-maven-plugin</artifactId> |
| 63 | <version>1.0</version> |
| 64 | <executions> |
| 65 | <execution> |
| 66 | <configuration> |
| 67 | <programs> |
| 68 | <program> |
| 69 | <mainClass>edu.uci.ics.asterix.tools.TblToAdm</mainClass> |
| 70 | <name>tbl2adm</name> |
| 71 | </program> |
| 72 | <program> |
| 73 | <mainClass>edu.uci.ics.asterix.tools.datagen.AdgClientDriver</mainClass> |
| 74 | <name>adg</name> |
| 75 | </program> |
| 76 | </programs> |
| 77 | <repositoryLayout>flat</repositoryLayout> |
| 78 | <repositoryName>lib</repositoryName> |
| 79 | </configuration> |
| 80 | <phase>package</phase> |
| 81 | <goals> |
| 82 | <goal>assemble</goal> |
| 83 | </goals> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <artifactId>maven-assembly-plugin</artifactId> |
| 89 | <version>2.2-beta-5</version> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <configuration> |
| 93 | <descriptors> |
| 94 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 95 | </descriptors> |
| 96 | </configuration> |
| 97 | <phase>package</phase> |
| 98 | <goals> |
| 99 | <goal>attached</goal> |
| 100 | </goals> |
| 101 | </execution> |
| 102 | </executions> |
| 103 | </plugin> |
| 104 | </plugins> |
| 105 | </build> |
| 106 | |
| 107 | <dependencies> |
| 108 | <dependency> |
| 109 | <groupId>edu.uci.ics.asterix</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 110 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 111 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 112 | <scope>compile</scope> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>edu.uci.ics.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 116 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 117 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 118 | <scope>compile</scope> |
| 119 | </dependency> |
| 120 | <dependency> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 121 | <groupId>edu.uci.ics.asterix</groupId> |
| 122 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 123 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 124 | <scope>compile</scope> |
| 125 | </dependency> |
| 126 | <dependency> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 127 | <groupId>edu.uci.ics.asterix</groupId> |
| 128 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 129 | <version>0.8.7-SNAPSHOT</version> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 130 | <scope>compile</scope> |
| 131 | </dependency> |
| 132 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 133 | <groupId>org.apache.httpcomponents</groupId> |
| 134 | <artifactId>httpclient</artifactId> |
| 135 | <version>4.2.2</version> |
| 136 | <scope>compile</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>org.apache.httpcomponents</groupId> |
| 140 | <artifactId>httpcore</artifactId> |
| 141 | <version>4.2.2</version> |
| 142 | <scope>compile</scope> |
| 143 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 144 | </dependencies> |
| 145 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 146 | </project> |