blob: c2cc563b805df65ac2d808d3b2ca1aceb61d2377 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! 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.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb1ca34f42013-03-25 03:17:01 +000020<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">
buyingyi55df5212013-03-24 07:20:08 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <artifactId>hyracks</artifactId>
Ian Maxone915e8c2015-07-01 17:03:31 -070024 <groupId>org.apache.hyracks</groupId>
Ian Maxon14be9462016-02-10 14:55:42 -080025 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000026 </parent>
27
Iane82f8112014-11-19 12:31:18 -080028 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
36
37
buyingyi55df5212013-03-24 07:20:08 +000038 <artifactId>hyracks-dist</artifactId>
39 <name>hyracks-dist</name>
40
41 <properties>
42 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Ian Maxon9e37c962015-11-25 07:38:37 -080043 <root.dir>${basedir}/../..</root.dir>
buyingyi55df5212013-03-24 07:20:08 +000044 </properties>
45
46 <build>
47 <plugins>
48 <plugin>
buyingyi55df5212013-03-24 07:20:08 +000049 <artifactId>maven-resources-plugin</artifactId>
50 <version>2.5</version>
51 <executions>
52 <execution>
53 <id>copy-scripts</id>
buyingyi55df5212013-03-24 07:20:08 +000054 <phase>package</phase>
55 <goals>
56 <goal>copy-resources</goal>
57 </goals>
58 <configuration>
59 <outputDirectory>target/appassembler/</outputDirectory>
60 <resources>
61 <resource>
62 <directory>src/main/resources</directory>
63 </resource>
64 </resources>
65 <directoryMode>0755</directoryMode>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-antrun-plugin</artifactId>
73 <version>1.6</version>
74 <executions>
75 <execution>
76 <id>process-test-classes</id>
77 <phase>package</phase>
78 <configuration>
79 <target>
80 <chmod file="target/appassembler/bin/*)" perm="755" />
81 </target>
82 </configuration>
83 <goals>
84 <goal>run</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 </plugins>
90 </build>
91</project>