blob: 56be6f1542951b4375e36b463c162d3aa6c261e4 [file] [log] [blame]
Ian Maxona70fba52016-02-18 13:52:36 -08001<!--
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 !-->
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">
16 <modelVersion>4.0.0</modelVersion>
17 <parent>
Ian Maxon3da9d062016-03-16 17:05:31 -070018 <artifactId>apache-asterixdb</artifactId>
Ian Maxona70fba52016-02-18 13:52:36 -080019 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070020 <version>0.8.9-SNAPSHOT</version>
Ian Maxona70fba52016-02-18 13:52:36 -080021 </parent>
22 <artifactId>asterix-experiments</artifactId>
23
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>
31 <source>1.7</source>
32 <target>1.7</target>
33 <fork>true</fork>
34 </configuration>
35 </plugin>
36 <plugin>
37 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>appassembler-maven-plugin</artifactId>
39 <version>1.0</version>
40 <executions>
41 <execution>
42 <configuration>
43 <programs>
44 <program>
45 <mainClass>org.apache.asterix.experiment.client.LSMExperimentSetRunner</mainClass>
46 <name>lsmexprunner</name>
47 </program>
48 <program>
49 <mainClass>org.apache.asterix.experiment.client.SocketTweetGeneratorDriver</mainClass>
50 <name>datagenrunner</name>
51 </program>
52 <program>
53 <mainClass>org.apache.asterix.experiment.client.SpatialQueryGeneratorDriver</mainClass>
54 <name>querygenrunner</name>
55 </program>
56 <program>
57 <mainClass>org.apache.asterix.experiment.client.RecordCountingServer</mainClass>
58 <name>rcserver</name>
59 </program>
60 </programs>
61 <repositoryLayout>flat</repositoryLayout>
62 <repositoryName>lib</repositoryName>
63 </configuration>
64 <phase>package</phase>
65 <goals>
66 <goal>assemble</goal>
67 </goals>
68 </execution>
69 </executions>
70 </plugin>
71 <plugin>
72 <artifactId>maven-assembly-plugin</artifactId>
73 <version>2.2-beta-5</version>
74 <executions>
75 <execution>
76 <configuration>
77 <descriptors>
78 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
79 </descriptors>
80 </configuration>
81 <phase>package</phase>
82 <goals>
83 <goal>attached</goal>
84 </goals>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
90
91 <dependencies>
92 <dependency>
93 <groupId>org.apache.asterix</groupId>
94 <artifactId>asterix-lang-common</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070095 <version>0.8.9-SNAPSHOT</version>
Ian Maxona70fba52016-02-18 13:52:36 -080096 <scope>compile</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.asterix</groupId>
100 <artifactId>asterix-lang-aql</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700101 <version>0.8.9-SNAPSHOT</version>
Ian Maxona70fba52016-02-18 13:52:36 -0800102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.asterix</groupId>
106 <artifactId>asterix-algebra</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700107 <version>0.8.9-SNAPSHOT</version>
Ian Maxona70fba52016-02-18 13:52:36 -0800108 <scope>compile</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.asterix</groupId>
112 <artifactId>asterix-external-data</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700113 <version>0.8.9-SNAPSHOT</version>
Ian Maxona70fba52016-02-18 13:52:36 -0800114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.asterix</groupId>
118 <artifactId>asterix-metadata</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700119 <version>0.8.9-SNAPSHOT</version>
Ian Maxona70fba52016-02-18 13:52:36 -0800120 <scope>compile</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.apache.httpcomponents</groupId>
124 <artifactId>httpclient</artifactId>
125 <version>4.2.2</version>
126 <scope>compile</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.httpcomponents</groupId>
130 <artifactId>httpcore</artifactId>
131 <version>4.2.2</version>
132 <scope>compile</scope>
133 </dependency>
134 <dependency>
135 <groupId>junit</groupId>
136 <artifactId>junit</artifactId>
137 <version>4.8.1</version>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.hyracks</groupId>
142 <artifactId>hyracks-control-cc</artifactId>
143 </dependency>
144 <dependency>
145 <groupId>org.apache.hyracks</groupId>
146 <artifactId>hyracks-control-nc</artifactId>
147 </dependency>
148 <dependency>
149 <groupId>org.apache.asterix</groupId>
150 <artifactId>asterix-app</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700151 <version>0.8.9-SNAPSHOT</version>
Ian Maxona70fba52016-02-18 13:52:36 -0800152 </dependency>
153<!-- <dependency>
154 <groupId>net.schmizz</groupId>
155 <artifactId>sshj</artifactId>
156 <version>0.9.0</version>
157 </dependency> -->
158 <dependency>
159 <groupId>com.hierynomus</groupId>
160 <artifactId>sshj</artifactId>
161 <version>0.13.0</version>
162 </dependency>
163 </dependencies>
164
165</project>