diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3e4a382 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "gradle" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/build.gradle b/build.gradle index 8b9a3f9..bc93d56 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ plugins { // Download task id "de.undercouch.download" version "5.6.0" // Task visualizer - id "com.dorongold.task-tree" version "3.0.0" + id "com.dorongold.task-tree" version "4.0.0" } /** @@ -48,7 +48,7 @@ dependencies { implementation files( 'src/test/resources/libs/boxlang-' + boxlangVersion + '-all.jar' ) // https://mvnrepository.com/artifact/io.undertow/undertow-core/2.3.12.Final - implementation 'io.undertow:undertow-core:2.3.13.Final' + implementation 'io.undertow:undertow-core:2.3.14.Final' // Testing Dependencies testImplementation "org.junit.jupiter:junit-jupiter:5.+" diff --git a/gradle.properties b/gradle.properties index 98414ec..3e5c9cb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -#Fri Jun 14 16:33:23 UTC 2024 -boxlangVersion=1.0.0-beta2 +#Fri Jun 21 19:31:41 UTC 2024 +boxlangVersion=1.0.0-beta3 jdkVersion=21 -version=1.0.0-beta2 +version=1.0.0-beta3 group=ortus.boxlang