blob: 0b4767419e056ba3484da7c1b53f1e8e7b57176f [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
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 Heilbron83509122014-03-30 16:07:06 -070019<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 Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
Ian Maxon4f3e48f2023-03-14 20:12:58 -070024 <version>0.9.9-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 </parent>
26 <artifactId>asterix-examples</artifactId>
zheilbronbebb2202014-03-28 14:36:52 -070027
Michael Blow82464fb2017-03-28 18:48:13 -040028 <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>
Ian4a816dc2014-11-26 15:46:32 -080060 <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 Maxon6e5f18e2015-11-24 18:02:48 -080069 <properties>
Michael Blow4cd925c2018-01-20 17:15:38 -050070 <root.dir>${basedir}/..</root.dir>
Michael Blow98526fe2016-08-22 19:54:07 -040071 <sonar.sources>pom.xml,src/main/java,src/main/resources</sonar.sources>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080072 </properties>
Ian4a816dc2014-11-26 15:46:32 -080073
Michael Blowb4c1fb02016-05-09 15:41:00 -070074 <packaging>pom</packaging>
Ian Maxonba7b55f2015-10-14 10:49:07 -070075</project>