Hi,
My project written in kotlin and gradle build file written in kotlin DSL
My build file look like below
loadtesting.gradle.kts
plugins {
id( “io.gatling.gradle”) version “3.5.0”
}
when i build it says
A problem occurred configuring project ‘:loadtesting’.
> Could not resolve all dependencies for configuration ‘:loadtesting:detachedConfiguration1’.
> Conflict(s) found for the following module(s):
- org.scala-lang:scala-library between versions 2.13.3, 2.13.0, 2.13.2 and 2.13.1
- com.typesafe:config between versions 1.4.1 and 1.4.0
- org.scala-lang:scala-reflect between versions 2.13.3 and 2.13.0
Run with:
–scan or
:loadtesting:dependencyInsight --configuration detachedConfiguration1 --dependency org.scala-lang:scala-library
to get more insight on how to solve the conflict.
Could someone guild me how to pass scala version to kotlin gradle build file (not groovy)
Thanks in advance
Ravi G