Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 20 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <artifactId>hyracks</artifactId> |
| 24 | <groupId>org.apache.hyracks</groupId> |
Ian Maxon | a3435a3 | 2017-01-18 18:31:30 -0800 | [diff] [blame] | 25 | <version>0.3.1-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 26 | </parent> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 27 | |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 28 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 37 | <artifactId>hyracks-dist</artifactId> |
| 38 | <name>hyracks-dist</name> |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 39 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 40 | <properties> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | <root.dir>${basedir}/../..</root.dir> |
| 43 | </properties> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 44 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 45 | <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> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 79 | <chmod file="target/appassembler/bin/*" perm="755" /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 80 | </target> |
| 81 | </configuration> |
| 82 | <goals> |
| 83 | <goal>run</goal> |
| 84 | </goals> |
| 85 | </execution> |
| 86 | </executions> |
| 87 | </plugin> |
| 88 | </plugins> |
| 89 | </build> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 90 | </project> |