blob: 0d79370e49c23193edbeaacd8e92aaea0b775f03 [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 Maxond4daeb42015-09-15 14:31:32 -070025 <version>0.2.17-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>
43 </properties>
44
45 <build>
46 <plugins>
47 <plugin>
buyingyi55df5212013-03-24 07:20:08 +000048 <artifactId>maven-resources-plugin</artifactId>
49 <version>2.5</version>
50 <executions>
51 <execution>
52 <id>copy-scripts</id>
buyingyi55df5212013-03-24 07:20:08 +000053 <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>
90</project>