blob: b485eefce6b2acced27b108edc71c4503b93822c [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>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -070025 <version>0.3.3-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070026 </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>
Michael Blowb4c1fb02016-05-09 15:41:00 -070041 <root.dir>${basedir}/../..</root.dir>
42 </properties>
buyingyi55df5212013-03-24 07:20:08 +000043
Michael Blowb4c1fb02016-05-09 15:41:00 -070044 <build>
45 <plugins>
46 <plugin>
47 <artifactId>maven-resources-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <executions>
49 <execution>
50 <id>copy-scripts</id>
Michael Blow5e17af22017-02-02 10:00:44 -050051 <phase>generate-test-resources</phase>
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 <goals>
53 <goal>copy-resources</goal>
54 </goals>
55 <configuration>
56 <outputDirectory>target/appassembler/</outputDirectory>
57 <resources>
58 <resource>
59 <directory>src/main/resources</directory>
60 </resource>
61 </resources>
Michael Blowb4c1fb02016-05-09 15:41:00 -070062 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070069 <executions>
70 <execution>
71 <id>process-test-classes</id>
Michael Blow5e17af22017-02-02 10:00:44 -050072 <phase>process-test-resources</phase>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <configuration>
74 <target>
Michael Blow380b0a22016-08-02 13:05:52 -040075 <chmod file="target/appassembler/bin/*" perm="755" />
Michael Blowb4c1fb02016-05-09 15:41:00 -070076 </target>
77 </configuration>
78 <goals>
79 <goal>run</goal>
80 </goals>
81 </execution>
82 </executions>
83 </plugin>
Michael Blow5e17af22017-02-02 10:00:44 -050084 <plugin>
85 <groupId>org.apache.rat</groupId>
86 <artifactId>apache-rat-plugin</artifactId>
87 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050088 <excludes combine.children="append">
Michael Blow5e17af22017-02-02 10:00:44 -050089 <exclude>src/main/resources/conf/master</exclude>
90 <exclude>src/main/resources/conf/slaves</exclude>
91 </excludes>
92 </configuration>
93 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070094 </plugins>
95 </build>
buyingyi55df5212013-03-24 07:20:08 +000096</project>