From 2f2304daf83924ef8c7fc5f7779153af80da149c Mon Sep 17 00:00:00 2001 From: tobi5775 <50146675+tobi5775@users.noreply.github.com> Date: Mon, 23 Jan 2023 12:17:38 +0100 Subject: [PATCH] add copyright information to jar (#2732) --- COPYRIGHT | 17 +++++++++++++++++ build.gradle | 4 ++++ 2 files changed, 21 insertions(+) create mode 100644 COPYRIGHT diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 000000000..109e47ac9 --- /dev/null +++ b/COPYRIGHT @@ -0,0 +1,17 @@ +____ ______________ ________________________ __________ +\ \/ / \ \/ / __/ / \ \/ / \ + \______/___/\___\______/___/_____/___/\___\______/___/\___\ + +Copyright 2023 Vavr, https://vavr.io + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/build.gradle b/build.gradle index a823126b9..f0f10b0a9 100644 --- a/build.gradle +++ b/build.gradle @@ -110,6 +110,10 @@ tasks.named('check') { } tasks.named('jar') { + from('.') { + include 'COPYRIGHT' + } + manifest { attributes('Automatic-Module-Name': 'io.vavr') }