blob: 26c1be293fa651628008f6db8877138574294395 [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>
Vinayak Borkar2dfb91b2013-06-06 00:31:45 -070020 <version>0.8.0</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 <artifactId>maven-surefire-plugin</artifactId>
61 <version>2.7.2</version>
62 <executions>
63 <execution>
64 <id>default-test</id>
65 <phase>test</phase>
66 <goals>
67 <goal>test</goal>
68 </goals>
69 <configuration>
70 <forkMode>pertest</forkMode>
71 <argLine>-enableassertions -Xmx1024m -Dfile.encoding=UTF-8
72 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
73 <includes>
74 <include>**/*TestSuite.java</include>
75 <include>**/*Test.java</include>
76 </includes>
77 </configuration>
78 </execution>
79 </executions>
80 <configuration>
81 <forkMode>pertest</forkMode>
82 <argLine>-enableassertions -Xmx1536m -Dfile.encoding=UTF-8
83 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
84 <includes>
85 <include>**/*TestSuite.java</include>
86 <include>**/*Test.java</include>
87 </includes>
88 </configuration>
89 </plugin>
90 <plugin>
91 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>appassembler-maven-plugin</artifactId>
93 <version>1.0</version>
94 <executions>
95 <execution>
96 <configuration>
97 <programs>
98 <program>
99 <mainClass>edu.uci.ics.asterix.tools.TblToAdm</mainClass>
100 <name>tbl2adm</name>
101 </program>
102 <program>
103 <mainClass>edu.uci.ics.asterix.tools.datagen.AdgClientDriver</mainClass>
104 <name>adg</name>
105 </program>
106 </programs>
107 <repositoryLayout>flat</repositoryLayout>
108 <repositoryName>lib</repositoryName>
109 </configuration>
110 <phase>package</phase>
111 <goals>
112 <goal>assemble</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
117 <plugin>
118 <artifactId>maven-assembly-plugin</artifactId>
119 <version>2.2-beta-5</version>
120 <executions>
121 <execution>
122 <configuration>
123 <descriptors>
124 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
125 </descriptors>
126 </configuration>
127 <phase>package</phase>
128 <goals>
129 <goal>attached</goal>
130 </goals>
131 </execution>
132 </executions>
133 </plugin>
134 </plugins>
135 </build>
136
137 <dependencies>
138 <dependency>
139 <groupId>edu.uci.ics.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000140 <artifactId>asterix-aql</artifactId>
Vinayak Borkar2dfb91b2013-06-06 00:31:45 -0700141 <version>0.8.0</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000142 <scope>compile</scope>
143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000146 <artifactId>asterix-algebra</artifactId>
Vinayak Borkar2dfb91b2013-06-06 00:31:45 -0700147 <version>0.8.0</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000148 <scope>compile</scope>
149 </dependency>
150 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000151 <groupId>org.apache.httpcomponents</groupId>
152 <artifactId>httpclient</artifactId>
153 <version>4.2.2</version>
154 <scope>compile</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.apache.httpcomponents</groupId>
158 <artifactId>httpcore</artifactId>
159 <version>4.2.2</version>
160 <scope>compile</scope>
161 </dependency>
162 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000163 <groupId>junit</groupId>
164 <artifactId>junit</artifactId>
165 <version>4.8.1</version>
166 <scope>test</scope>
167 </dependency>
168 </dependencies>
169
vinayakb5ee049d2013-04-06 21:21:29 +0000170</project>