Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
chore(): Bump Chutney to 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
boddissattva committed Dec 18, 2023
1 parent e0223b7 commit 951f18a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
9 changes: 4 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repositories {
ivy {
url = uri("https://github.com/")
patternLayout {
artifact("/[organisation]/[module]/releases/download/[revision]/[artifact]-[revision].[ext]")
artifact("/chutney-testing/chutney/releases/download/[revision]/[artifact]-[revision].[ext]")
}
// This is required in Gradle 6.0+ as metadata file (ivy.xml) is mandatory.
// Docs https://docs.gradle.org/6.2/userguide/declaring_repositories.html#sec:supported_metadata_sources
Expand All @@ -45,7 +45,7 @@ repositories {

dependencies {
implementation(enforcedPlatform("com.chutneytesting:chutney-parent:${properties["chutneyVersion"]}"))
implementation("com.chutneytesting", "chutney-kotlin-dsl", "2.0.1")
implementation("com.chutneytesting", "chutney-kotlin-dsl", properties("chutneyVersion"))
implementation("com.google.guava", "guava")
implementation("org.hjson", "hjson")
implementation("org.apache.commons", "commons-text")
Expand All @@ -64,8 +64,7 @@ dependencies {
// exclude("org.sl4j") does not exclude
isTransitive = false // this exclude "org.sl4j"
}
testImplementation("junit", "junit", "4.12")
runtimeOnly("chutney-testing", "chutney-idea-server", properties("chutneyIdeaServerVersion"), ext = "jar") {
runtimeOnly("com.chutneytesting", "chutney-local-api-unsecure", properties("chutneyVersion"), ext = "jar") {
isTransitive = false
}

Expand All @@ -92,7 +91,7 @@ intellij {
}
}
}
configure<JavaPluginConvention> {
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_17
}

Expand Down
7 changes: 3 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ org.gradle.jvmargs=-Xmx2048M

pluginGroup = com.chutneytesting.idea
pluginName = chutney-idea-plugin
pluginVersion = 2.4
pluginVersion = 2.5.1

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 231
pluginUntilBuild = 232.*
pluginUntilBuild = 233.*

# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions.
Expand All @@ -30,5 +30,4 @@ platformPlugins =com.intellij.java, com.intellij.spring, org.jetbrains.plugins.y
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
kotlin.stdlib.default.dependency = false

chutneyVersion = 2.2.0
chutneyIdeaServerVersion = 2.2.0
chutneyVersion = 2.5.1
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
org.gradle.api.GradleException: Failed to create Jar filedistributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 951f18a

Please sign in to comment.