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