blob: 99f8eca96de330ec54266909d703ea37a5ec478c [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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <artifactId>hyracks</artifactId>
24 <groupId>org.apache.hyracks</groupId>
25 <version>0.2.18-SNAPSHOT</version>
26 </parent>
buyingyi55df5212013-03-24 07:20:08 +000027
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
Michael Blowb4c1fb02016-05-09 15:41:00 -070037 <artifactId>hyracks-dist</artifactId>
38 <name>hyracks-dist</name>
Iane82f8112014-11-19 12:31:18 -080039
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 <root.dir>${basedir}/../..</root.dir>
43 </properties>
buyingyi55df5212013-03-24 07:20:08 +000044
Michael Blowb4c1fb02016-05-09 15:41:00 -070045 <build>
46 <plugins>
47 <plugin>
48 <artifactId>maven-resources-plugin</artifactId>
49 <version>2.5</version>
50 <executions>
51 <execution>
52 <id>copy-scripts</id>
53 <phase>package</phase>
54 <goals>
55 <goal>copy-resources</goal>
56 </goals>
57 <configuration>
58 <outputDirectory>target/appassembler/</outputDirectory>
59 <resources>
60 <resource>
61 <directory>src/main/resources</directory>
62 </resource>
63 </resources>
64 <directoryMode>0755</directoryMode>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-antrun-plugin</artifactId>
72 <version>1.6</version>
73 <executions>
74 <execution>
75 <id>process-test-classes</id>
76 <phase>package</phase>
77 <configuration>
78 <target>
79 <chmod file="target/appassembler/bin/*)" perm="755"/>
80 </target>
81 </configuration>
82 <goals>
83 <goal>run</goal>
84 </goals>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
buyingyi55df5212013-03-24 07:20:08 +000090</project>