blob: 48919d5fdfdc89840a4e115d837062bfe104b9e9 [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>
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>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <executions>
50 <execution>
51 <id>copy-scripts</id>
Michael Blow5e17af22017-02-02 10:00:44 -050052 <phase>generate-test-resources</phase>
Michael Blowb4c1fb02016-05-09 15:41:00 -070053 <goals>
54 <goal>copy-resources</goal>
55 </goals>
56 <configuration>
57 <outputDirectory>target/appassembler/</outputDirectory>
58 <resources>
59 <resource>
60 <directory>src/main/resources</directory>
61 </resource>
62 </resources>
Michael Blowb4c1fb02016-05-09 15:41:00 -070063 </configuration>
64 </execution>
65 </executions>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-antrun-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 <executions>
71 <execution>
72 <id>process-test-classes</id>
Michael Blow5e17af22017-02-02 10:00:44 -050073 <phase>process-test-resources</phase>
Michael Blowb4c1fb02016-05-09 15:41:00 -070074 <configuration>
75 <target>
Michael Blow380b0a22016-08-02 13:05:52 -040076 <chmod file="target/appassembler/bin/*" perm="755" />
Michael Blowb4c1fb02016-05-09 15:41:00 -070077 </target>
78 </configuration>
79 <goals>
80 <goal>run</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
Michael Blow5e17af22017-02-02 10:00:44 -050085 <plugin>
86 <groupId>org.apache.rat</groupId>
87 <artifactId>apache-rat-plugin</artifactId>
88 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050089 <excludes combine.children="append">
Michael Blow5e17af22017-02-02 10:00:44 -050090 <exclude>src/main/resources/conf/master</exclude>
91 <exclude>src/main/resources/conf/slaves</exclude>
92 </excludes>
93 </configuration>
94 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070095 </plugins>
96 </build>
buyingyi55df5212013-03-24 07:20:08 +000097</project>