diff --git a/build.gradle b/build.gradle index 15e035207..7bb165d87 100644 --- a/build.gradle +++ b/build.gradle @@ -39,6 +39,7 @@ plugins { id 'maven-publish' id 'se.patrikerdes.use-latest-versions' version '0.2.18' id 'com.github.ben-manes.versions' version '0.51.0' + id 'com.github.jk1.dependency-license-report' version '2.9' apply false } description = 'A set of libraries and other tools to aid development of blockchain and other decentralized software in Java and other JVM languages' @@ -79,7 +80,7 @@ gradle.startParameter.taskNames.each { gradle.startParameter.taskNames = expandedTaskList.flatten() as Iterable ext { - gradleVersion = '7.6' + gradleVersion = '8.10.1' } apply from: "${rootDir}/gradle/wrapper.gradle" diff --git a/dist/build.gradle b/dist/build.gradle index 49d7d5f5f..72e316c7e 100644 --- a/dist/build.gradle +++ b/dist/build.gradle @@ -16,6 +16,7 @@ import org.gradle.crypto.checksum.Checksum plugins { id 'application' + id 'distribution' id 'com.bmuschko.docker-remote-api' version '9.4.0' } @@ -109,11 +110,11 @@ distributions { include "*" } into('') { - from "$project.buildDir/license" + from ".." include 'LICENSE' } into('') { - from "$project.buildDir/notice" + from ".." include 'NOTICE' } def libs = []