Skip to content

Commit e2ea761

Browse files
author
Guru Hb
committedOct 27, 2020
6951: [core] Missing license.txt in core artifacts
Reviewed-by: hirt
1 parent 47e197f commit e2ea761

File tree

2 files changed

+89
-0
lines changed

2 files changed

+89
-0
lines changed
 

‎core/license/LICENSE.txt

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved.
2+
3+
The Universal Permissive License (UPL), Version 1.0
4+
5+
Subject to the condition set forth below, permission is hereby granted to any
6+
person obtaining a copy of this software, associated documentation and/or data
7+
(collectively the "Software"), free of charge and under any and all copyright
8+
rights in the Software, and any and all patent rights owned or freely
9+
licensable by each licensor hereunder covering either (i) the unmodified
10+
Software as contributed to or provided by such licensor, or (ii) the Larger
11+
Works (as defined below), to deal in both
12+
13+
(a) the Software, and
14+
15+
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
16+
one is included with the Software (each a �Larger Work� to which the
17+
Software is contributed by such licensors), without restriction, including
18+
without limitation the rights to copy, create derivative works of,
19+
display, perform, and distribute the Software and make, use, sell, offer
20+
for sale, import, export, have made, and have sold the Software and the
21+
Larger Work(s), and to sublicense the foregoing rights on either these or
22+
other terms.
23+
24+
This license is subject to the following condition:
25+
26+
The above copyright notice and either this complete permission notice or at a
27+
minimum a reference to the UPL must be included in all copies or substantial
28+
portions of the Software.
29+
30+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
35+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36+
SOFTWARE.
37+
38+
39+
Copyright (c) 2018 Oracle America, Inc. All rights reserved.
40+
41+
Redistribution and use in source and binary forms, with or without
42+
modification, are permitted provided that the following conditions are met:
43+
44+
1. Redistributions of source code must retain the above copyright notice,
45+
this list of conditions and the following disclaimer.
46+
47+
2. Redistributions in binary form must reproduce the above copyright notice,
48+
this list of conditions and the following disclaimer in the documentation
49+
and/or other materials provided with the distribution.
50+
51+
3. Neither the name of the copyright holder nor the names of its contributors
52+
may be used to endorse or promote products derived from this software
53+
without specific prior written permission.
54+
55+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
56+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
58+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
59+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
61+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
62+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
63+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

‎core/pom.xml

+25
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,31 @@
9999
</java>
100100
</configuration>
101101
</plugin>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-resources-plugin</artifactId>
105+
<version>3.0.2</version>
106+
<executions>
107+
<execution>
108+
<id>copy-resources</id>
109+
<phase>process-resources</phase>
110+
<goals>
111+
<goal>copy-resources</goal>
112+
</goals>
113+
<configuration>
114+
<outputDirectory>${project.build.directory}/classes/license</outputDirectory>
115+
<resources>
116+
<resource>
117+
<directory>${project.basedir}/../license</directory>
118+
<includes>
119+
<include>LICENSE.txt</include>
120+
</includes>
121+
</resource>
122+
</resources>
123+
</configuration>
124+
</execution>
125+
</executions>
126+
</plugin>
102127
</plugins>
103128
</pluginManagement>
104129
<plugins>

0 commit comments

Comments
 (0)
Please sign in to comment.