Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 1 | <!-- |
| 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> |
Michael Blow | c3dfd4b | 2017-01-17 17:19:49 -0500 | [diff] [blame] | 25 | <artifactId>apache-hyracks</artifactId> |
Ian Maxon | c95de7a | 2020-08-07 11:58:39 -0700 | [diff] [blame] | 26 | <version>0.3.6-SNAPSHOT</version> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 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> |
Michael Blow | e2cf491 | 2017-01-18 15:39:40 -0500 | [diff] [blame] | 53 | <templateRootDir>${basedir}/src/main/licenses/templates</templateRootDir> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 54 | <outputDir>${basedir}/..</outputDir> |
| 55 | <location>ignored</location> |
| 56 | <generatedFiles> |
| 57 | <generatedFile> |
Michael Blow | e2cf491 | 2017-01-18 15:39:40 -0500 | [diff] [blame] | 58 | <template>hyracks-source-license.ftl</template> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 59 | <outputFile>LICENSE</outputFile> |
| 60 | </generatedFile> |
| 61 | <generatedFile> |
Michael Blow | 6224966 | 2017-01-24 14:22:47 -0500 | [diff] [blame] | 62 | <template>hyracks-notice.ftl</template> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 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> |
Ian Maxon | def643d | 2017-01-18 18:31:11 -0800 | [diff] [blame] | 83 | <hyracksControlCcLocation /> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 84 | <hyracksControlCcResourcesPrefix>hyracks/hyracks-control/hyracks-control-cc/src/main/resources/</hyracksControlCcResourcesPrefix> |
Michael Blow | 6224966 | 2017-01-24 14:22:47 -0500 | [diff] [blame] | 85 | <packageName>Apache Hyracks and Algebricks</packageName> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 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> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 103 | <versionRange>[0.0,)</versionRange> |
Michael Blow | 43b40b6 | 2017-01-14 17:03:12 -0500 | [diff] [blame] | 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> |