blob: 41a298b71a0e5408903c978574760e03313b3be6 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
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 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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">
vinayakb38b7ca42012-03-05 05:44:15 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-tools</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 <version>2.0.2</version>
30 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000031 <source>1.7</source>
32 <target>1.7</target>
33 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000034 </configuration>
35 </plugin>
36 <plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000037 <artifactId>maven-jar-plugin</artifactId>
38 <executions>
39 <execution>
40 <id>aqlclient</id>
41 <goals>
42 <goal>jar</goal>
43 </goals>
44 <phase>package</phase>
45 <configuration>
46 <classifier>aqlclient</classifier>
47 <archive>
48 <manifest>
49 <MainClass>edu.uci.ics.asterix.tools.aqlclient.AqlClient</MainClass>
50 </manifest>
51 </archive>
52 <includes>
53 <include>**/uci/ics/asterix/tools/aqlclient/*</include>
54 </includes>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 <plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000060 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>appassembler-maven-plugin</artifactId>
62 <version>1.0</version>
63 <executions>
64 <execution>
65 <configuration>
66 <programs>
67 <program>
68 <mainClass>edu.uci.ics.asterix.tools.TblToAdm</mainClass>
69 <name>tbl2adm</name>
70 </program>
71 <program>
72 <mainClass>edu.uci.ics.asterix.tools.datagen.AdgClientDriver</mainClass>
73 <name>adg</name>
74 </program>
75 </programs>
76 <repositoryLayout>flat</repositoryLayout>
77 <repositoryName>lib</repositoryName>
78 </configuration>
79 <phase>package</phase>
80 <goals>
81 <goal>assemble</goal>
82 </goals>
83 </execution>
84 </executions>
85 </plugin>
86 <plugin>
87 <artifactId>maven-assembly-plugin</artifactId>
88 <version>2.2-beta-5</version>
89 <executions>
90 <execution>
91 <configuration>
92 <descriptors>
93 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
94 </descriptors>
95 </configuration>
96 <phase>package</phase>
97 <goals>
98 <goal>attached</goal>
99 </goals>
100 </execution>
101 </executions>
102 </plugin>
103 </plugins>
104 </build>
105
106 <dependencies>
107 <dependency>
108 <groupId>edu.uci.ics.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000109 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700110 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000111 <scope>compile</scope>
112 </dependency>
113 <dependency>
114 <groupId>edu.uci.ics.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000115 <artifactId>asterix-algebra</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700116 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000117 <scope>compile</scope>
118 </dependency>
119 <dependency>
ramangrover29566b3a92013-05-28 09:07:10 -0700120 <groupId>edu.uci.ics.asterix</groupId>
121 <artifactId>asterix-external-data</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700122 <version>0.8.7-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700123 <scope>compile</scope>
124 </dependency>
125 <dependency>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530126 <groupId>edu.uci.ics.asterix</groupId>
127 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700128 <version>0.8.7-SNAPSHOT</version>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530129 <scope>compile</scope>
130 </dependency>
131 <dependency>
ramangrover2913e2bec2013-11-08 14:27:34 +0530132 <groupId>edu.uci.ics.asterix</groupId>
133 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700134 <version>0.8.7-SNAPSHOT</version>
ramangrover2913e2bec2013-11-08 14:27:34 +0530135 <scope>compile</scope>
136 </dependency>
137 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000138 <groupId>org.apache.httpcomponents</groupId>
139 <artifactId>httpclient</artifactId>
140 <version>4.2.2</version>
141 <scope>compile</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.apache.httpcomponents</groupId>
145 <artifactId>httpcore</artifactId>
146 <version>4.2.2</version>
147 <scope>compile</scope>
148 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000149 </dependencies>
150
vinayakb5ee049d2013-04-06 21:21:29 +0000151</project>