blob: 886dbf7cf723dc2f6ecd4aea22afd814a204cef8 [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>
Till Westmann6212c902014-07-30 15:44:59 -070029 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000030 <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>
Till Westmann6212c902014-07-30 15:44:59 -070038 <version>2.4</version>
vinayakb5ee049d2013-04-06 21:21:29 +000039 <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>
vinayakb38b7ca42012-03-05 05:44:15 +000061 <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>
vinayakb5ee049d2013-04-06 21:21:29 +0000110 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700111 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000112 <scope>compile</scope>
113 </dependency>
114 <dependency>
115 <groupId>edu.uci.ics.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000116 <artifactId>asterix-algebra</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700117 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000118 <scope>compile</scope>
119 </dependency>
120 <dependency>
ramangrover29566b3a92013-05-28 09:07:10 -0700121 <groupId>edu.uci.ics.asterix</groupId>
122 <artifactId>asterix-external-data</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700123 <version>0.8.7-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700124 <scope>compile</scope>
125 </dependency>
126 <dependency>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530127 <groupId>edu.uci.ics.asterix</groupId>
128 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700129 <version>0.8.7-SNAPSHOT</version>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530130 <scope>compile</scope>
131 </dependency>
132 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000133 <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>
vinayakb38b7ca42012-03-05 05:44:15 +0000144 </dependencies>
145
vinayakb5ee049d2013-04-06 21:21:29 +0000146</project>