Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update LICENSE & NOTICE #187

Merged
merged 1 commit into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2016 Luciad
Copyright 2022 Mateusz Kwieciński

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -199,4 +200,4 @@
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.
limitations under the License.
8 changes: 8 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Luciad WebP Image I/O support library
Copyright 2016 Luciad

This product includes software developed at
Luciad (http://www.luciad.com).

Credits to Gauthier Roebroeck for creating necessary setup to build native libwebp binaries
Copyright 2022 Mateusz Kwieciński
5 changes: 5 additions & 0 deletions gradle/plugins/src/main/kotlin/PublishingPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import org.gradle.api.plugins.JavaPluginExtension
import org.gradle.api.publish.PublishingExtension
import org.gradle.api.publish.maven.MavenPublication
import org.gradle.jvm.tasks.Jar
import org.gradle.language.jvm.tasks.ProcessResources
import org.gradle.plugins.signing.SigningExtension
import org.jetbrains.dokka.gradle.DokkaTask

Expand All @@ -30,6 +31,10 @@ class PublishingPlugin : Plugin<Project> {
tasks.named("javadocJar", Jar::class.java) { javadocJar ->
javadocJar.from(tasks.named("dokkaJavadoc"))
}
tasks.named("processResources", ProcessResources::class.java) { processResources ->
processResources.from(rootProject.file("NOTICE"))
processResources.from(rootProject.file("LICENSE"))
}
}

extensions.configure<PublishingExtension> {
Expand Down