Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [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 | !--> |
Zachary Heilbron | 8350912 | 2014-03-30 16:07:06 -0700 | [diff] [blame] | 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/xsd/maven-4.0.0.xsd"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>apache-asterixdb</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | 4f3e48f | 2023-03-14 20:12:58 -0700 | [diff] [blame] | 24 | <version>0.9.9-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>asterix-examples</artifactId> |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame] | 27 | |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.apache.rat</groupId> |
| 32 | <artifactId>apache-rat-plugin</artifactId> |
| 33 | <configuration> |
| 34 | <licenses combine.children="append"> |
| 35 | <license implementation="org.apache.rat.analysis.license.MITLicense"/> |
| 36 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 37 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 38 | <licenseFamilyName>RainbowVis-JS</licenseFamilyName> |
| 39 | <patterns>RainbowVis-JS | Released under MIT License</patterns> |
| 40 | </license> |
| 41 | <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense"> |
| 42 | <licenseFamilyCategory>MIT</licenseFamilyCategory> |
| 43 | <licenseFamilyName>jquery.org</licenseFamilyName> |
| 44 | <patterns>jquery.org/license</patterns> |
| 45 | </license> |
| 46 | </licenses> |
| 47 | <licenseFamilies combine.children="append"> |
| 48 | <licenseFamily implementation="org.apache.rat.license.MITLicenseFamily"/> |
| 49 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 50 | <familyName>RainbowVis-JS</familyName> |
| 51 | </licenseFamily> |
| 52 | <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily"> |
| 53 | <familyName>jquery.org</familyName> |
| 54 | </licenseFamily> |
| 55 | </licenseFamilies> |
| 56 | </configuration> |
| 57 | </plugin> |
| 58 | </plugins> |
| 59 | </build> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 60 | <licenses> |
| 61 | <license> |
| 62 | <name>Apache License, Version 2.0</name> |
| 63 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 64 | <distribution>repo</distribution> |
| 65 | <comments>A business-friendly OSS license</comments> |
| 66 | </license> |
| 67 | </licenses> |
| 68 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 69 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 70 | <root.dir>${basedir}/..</root.dir> |
Michael Blow | 98526fe | 2016-08-22 19:54:07 -0400 | [diff] [blame] | 71 | <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 72 | </properties> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 73 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 74 | <packaging>pom</packaging> |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 75 | </project> |