Skip to content

Commit

Permalink
Update LICENSE & NOTICE
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski committed Mar 3, 2024
1 parent 3272dff commit 05b043c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
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

0 comments on commit 05b043c

Please sign in to comment.