blob: a25c0d6a9e3ef58b9f98063f663417d410aed6e7 [file] [log] [blame]
Michael Blow43b40b62017-01-14 17:03:12 -05001<!--
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.
18 !-->
19<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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21 <artifactId>hyracks-fullstack-license</artifactId>
22 <name>hyracks-fullstack-license</name>
23 <parent>
24 <groupId>org.apache.hyracks</groupId>
25 <artifactId>apache-asterixdb-hyracks</artifactId>
26 <version>0.2.18-SNAPSHOT</version>
27 </parent>
28
29 <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 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.hyracks</groupId>
42 <artifactId>license-automation-plugin</artifactId>
43 <version>${project.version}</version>
44 <executions>
45 <execution>
46 <phase>generate-resources</phase>
47 <goals>
48 <goal>generate</goal>
49 </goals>
50 </execution>
51 </executions>
52 <configuration>
53 <templateRootDir>${basedir}</templateRootDir>
54 <outputDir>${basedir}/..</outputDir>
55 <location>ignored</location>
56 <generatedFiles>
57 <generatedFile>
58 <template>src/main/licenses/templates/hyracks-source-license.ftl</template>
59 <outputFile>LICENSE</outputFile>
60 </generatedFile>
61 <generatedFile>
62 <template>src/main/licenses/templates/asterix-notice.ftl</template>
63 <outputFile>NOTICE</outputFile>
64 </generatedFile>
65 </generatedFiles>
66 <excludedScopes>
67 <excludedScope>test</excludedScope>
68 </excludedScopes>
69 <licenseDirectory>${basedir}/src/main/licenses/content</licenseDirectory>
70 <licenses>
71 <license>
72 <displayName>The Apache Software License, Version 2.0</displayName>
73 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
74 <aliasUrls>
75 <aliasUrl>http://www.apache.org/licenses/LICENSE-2.0</aliasUrl>
76 <aliasUrl>https://www.apache.org/licenses/LICENSE-2.0.txt</aliasUrl>
77 <aliasUrl>http://www.apache.org/licenses/LICENSE-2.0.html</aliasUrl>
78 </aliasUrls>
79 <metric>1</metric>
80 </license>
81 </licenses>
82 <templateProperties>
83 <hyracksControlCcLocation/>
84 <hyracksControlCcResourcesPrefix>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/</hyracksControlCcResourcesPrefix>
85 <packageName>Hyracks and Algebricks</packageName>
86 </templateProperties>
87 </configuration>
88 </plugin>
89 </plugins>
90 <pluginManagement>
91 <plugins>
92 <plugin>
93 <groupId>org.eclipse.m2e</groupId>
94 <artifactId>lifecycle-mapping</artifactId>
95 <version>1.0.0</version>
96 <configuration>
97 <lifecycleMappingMetadata>
98 <pluginExecutions>
99 <pluginExecution>
100 <pluginExecutionFilter>
101 <groupId>org.apache.asterix</groupId>
102 <artifactId>license-automation-plugin</artifactId>
103 <versionRange>${project.version}</versionRange>
104 <goals>
105 <goal>generate</goal>
106 </goals>
107 </pluginExecutionFilter>
108 <action>
109 <ignore />
110 </action>
111 </pluginExecution>
112 </pluginExecutions>
113 </lifecycleMappingMetadata>
114 </configuration>
115 </plugin>
116 </plugins>
117 </pluginManagement>
118 </build>
119</project>