Skip to content

Commit

Permalink
Merge pull request #34 from projectNEWM/amw/ogmios630
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
AndrewWestberg authored May 28, 2024
2 parents b611cda + e8f75d5 commit e509b16
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import org.hibernate.build.publish.auth.maven.MavenRepoAuthPlugin
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
java
Expand All @@ -18,7 +19,7 @@ if (!project.hasProperty("isGithubActions")) {
}

group = "io.newm"
version = "2.2.0-SNAPSHOT"
version = "2.2.1-SNAPSHOT"

java.sourceCompatibility = JavaVersion.VERSION_21
java.targetCompatibility = JavaVersion.VERSION_21
Expand Down Expand Up @@ -182,15 +183,15 @@ project.tasks.withType<org.jetbrains.kotlin.gradle.tasks.UsesKotlinJavaToolchain
}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
compilerOptions {
freeCompilerArgs =
listOf(
"-Xjsr305=strict",
"-opt-in=kotlin.RequiresOptIn",
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
)
jvmTarget = "21"
jvmTarget.set(JvmTarget.JVM_21)
}
}

Expand Down
16 changes: 8 additions & 8 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
object Versions {
const val COMMONS_LOGGING = "1.3.1"
const val COMMONS_LOGGING = "1.3.2"
const val COMMONS_NUMBERS = "1.1"
const val COROUTINES = "1.8.0"
const val COROUTINES = "1.8.1"
const val GOOGLE_TRUTH = "1.4.2"
const val JUNIT = "5.10.2"
const val KOTLIN = "1.9.23"
const val KOTLINX_DATETIME = "0.5.0"
const val KOTLIN = "2.0.0"
const val KOTLINX_DATETIME = "0.6.0"
const val KOTLINX_SERIALIZATION = "1.6.3"
const val KTLINT = "1.2.1"
const val KTLINT_PLUGIN = "12.1.0"
const val KTOR = "2.3.9"
const val LOGBACK = "1.5.3"
const val KTLINT_PLUGIN = "12.1.1"
const val KTOR = "2.3.11"
const val LOGBACK = "1.5.6"
const val MAVEN_REPO_AUTH_PLUGIN = "3.0.4"
const val MOCKK = "1.13.10"
const val MOCKK = "1.13.11"
const val VERSIONS_PLUGIN = "0.51.0"
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
20 changes: 10 additions & 10 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand All @@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2

goto fail

Expand Down

0 comments on commit e509b16

Please sign in to comment.