blob: 2796dec0eab2669d3caff4e9c70cf044f70cdffa [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Ian Maxond8857792015-09-11 14:19:53 -07003 ! Licensed to the Apache Software Foundation (ASF) under one
4 ! or more contributor license agreements. See the NOTICE file
5 ! distributed with this work for additional information
6 ! regarding copyright ownership. The ASF licenses this file
7 ! to you under the Apache License, Version 2.0 (the
8 ! "License"); you may not use this file except in compliance
9 ! with the License. You may obtain a copy of the License at
10 !
11 ! http://www.apache.org/licenses/LICENSE-2.0
12 !
13 ! Unless required by applicable law or agreed to in writing,
14 ! software distributed under the License is distributed on an
15 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ! KIND, either express or implied. See the License for the
17 ! specific language governing permissions and limitations
18 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070019 !-->
Ian Maxond8857792015-09-11 14:19:53 -070020
vinayakb1ca34f42013-03-25 03:17:01 +000021<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 +000022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <artifactId>hyracks</artifactId>
Ian Maxone915e8c2015-07-01 17:03:31 -070025 <groupId>org.apache.hyracks</groupId>
Ian Maxonb86e4392015-09-11 13:24:39 -070026 <version>0.2.16-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000027 </parent>
28
Iane82f8112014-11-19 12:31:18 -080029 <licenses>
30 <license>
31 <name>Apache License, Version 2.0</name>
32 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33 <distribution>repo</distribution>
34 <comments>A business-friendly OSS license</comments>
35 </license>
36 </licenses>
37
38
buyingyi55df5212013-03-24 07:20:08 +000039 <artifactId>hyracks-dist</artifactId>
40 <name>hyracks-dist</name>
41
42 <properties>
43 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44 </properties>
45
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <version>2.0.2</version>
52 <configuration>
53 <source>1.7</source>
54 <target>1.7</target>
55 </configuration>
56 </plugin>
57 <plugin>
58 <artifactId>maven-resources-plugin</artifactId>
59 <version>2.5</version>
60 <executions>
61 <execution>
62 <id>copy-scripts</id>
63 <!-- here the phase you need -->
64 <phase>package</phase>
65 <goals>
66 <goal>copy-resources</goal>
67 </goals>
68 <configuration>
69 <outputDirectory>target/appassembler/</outputDirectory>
70 <resources>
71 <resource>
72 <directory>src/main/resources</directory>
73 </resource>
74 </resources>
75 <directoryMode>0755</directoryMode>
76 </configuration>
77 </execution>
78 </executions>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-antrun-plugin</artifactId>
83 <version>1.6</version>
84 <executions>
85 <execution>
86 <id>process-test-classes</id>
87 <phase>package</phase>
88 <configuration>
89 <target>
90 <chmod file="target/appassembler/bin/*)" perm="755" />
91 </target>
92 </configuration>
93 <goals>
94 <goal>run</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
99 </plugins>
100 </build>
101</project>