blob: abc19f6cd6e51aed3fec1820029d46ea1cf0f701 [file] [log] [blame]
Dmitry Lychagin70139ba2022-02-23 13:19:13 -08001<#--
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<@indent spaces=3>
20<#list licenses as license>
21 <#if license.url == "http://www.apache.org/licenses/LICENSE-2.0.txt">
22${license.content}
23 <#break>
24 </#if>
25</#list>
26</@indent>
27===
28 ASTERIXDB JDBC DRIVER COMPONENTS:
29
30 AsterixDB JDBC Driver includes a number of subcomponents with separate copyright
31 notices and license terms. Your use of these subcomponents is subject
32 to the terms and condition of the following licenses.
33===
34<#list licenseMap as e>
35 <#assign licenseUrl = e.getKey()/>
36 <#assign entry = e.getValue()/>
37 <#assign projects = entry.projects/>
38 <#assign license = entry.getLicense()/>
39 <#if projects?size == 1>
40 Component:
41 <#assign isare = "is"/>
42 <#else>
43 Components:
44 <#assign isare = "are"/>
45 </#if>
46 <#list projects as p>
47 * ${p.name} (${p.groupId}:${p.artifactId}:${p.version})
48 </#list>
49
50 <#if license.url == "PUBLIC_DOMAIN">
51 ${isare} in the public domain.
52 <#elseif license.url == "http://www.apache.org/licenses/LICENSE-2.0.txt">
53 ${isare} available under ${license.displayName}.
54 <#else>
55 ${isare} available under ${license.displayName!"the following license"}:
56---
57<@indent spaces=6>
58${license.content}
59</@indent>
60 </#if>
61---
62</#list>