blob: 6200a00b48234352bb6dd8fdd454db4ac4258ca3 [file] [log] [blame]
Ian Maxon231c24d2015-09-29 15:43:25 -07001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
19
20<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">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <artifactId>asterix</artifactId>
Ian Maxon971923d2015-10-22 17:01:29 -070024 <groupId>org.apache.asterix</groupId>
Ian Maxon231c24d2015-09-29 15:43:25 -070025 <version>0.8.7-SNAPSHOT</version>
26 </parent>
27 <artifactId>asterix-docker</artifactId>
28 <properties>
29 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30 </properties>
31
32 <licenses>
33 <license>
34 <name>Apache License, Version 2.0</name>
35 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
36 <distribution>repo</distribution>
37 <comments>A business-friendly OSS license</comments>
38 </license>
39 </licenses>
40
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>com.spotify</groupId>
45 <artifactId>docker-maven-plugin</artifactId>
46 <version>0.2.11</version>
47 <configuration>
48 <imageName>asterixdb/demo</imageName>
49 <dockerDirectory>docker</dockerDirectory>
50 <resources>
51 <resource>
52 <targetPath>/</targetPath>
53 <directory>../asterix-server/target/</directory>
54 <include>asterix-server-${project.version}-binary-assembly.zip</include>
55 </resource>
56 </resources>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61
62
63</project>