Skip to content

Commit

Permalink
chore: upgrade default Scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
slandelle committed Mar 4, 2024
1 parent 557e8a7 commit b543324
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ class GatlingPluginExtension {

static final String GATLING_VERSION = '3.10.4'

static final String SCALA_VERSION = '2.13.12'
static final String SCALA_VERSION = '2.13.13'

static final String DEFAULT_LOG_LEVEL = "WARN"
static final LogHttp DEFAULT_LOG_HTTP = LogHttp.NONE
Expand Down
11 changes: 0 additions & 11 deletions src/test/groovy/unit/GatlingPluginTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,6 @@ class GatlingPluginTest extends GatlingUnitSpec {
}
}

def "should allow overriding gatling version via extension with deprecated property"() {
when:
project.gatling { toolVersion = '3.5.1' }
and:
project.evaluate()
then:
project.configurations.getByName("gatling").allDependencies.find {
it.name == "gatling-charts-highcharts" && it.version == "3.5.1"
}
}

def "should allow overriding scala version via extension"() {
when:
project.gatling { scalaVersion = '2.11.3' }
Expand Down

0 comments on commit b543324

Please sign in to comment.