Skip to content

Commit

Permalink
Merge pull request #115 from vbmacher/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
vbmacher authored Apr 15, 2023
2 parents d51880e + 554a6b3 commit 803ab79
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
23 changes: 13 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
ext.versions = [
scala : '2.13',
scalaFull : '2.13.+',
gherkin : '231.7515.9',
idea : '231.7515.13-EAP-SNAPSHOT',
scalaPlugin: '2023.1.8',
cucumber : '8.14.1',
scalaTest : '3.2.14'
scala : '2.13',
scalaFull : '2.13.+',
gherkin : '231.8109.91',
idea : '2023.1',
scalaPlugin : '2023.1.16',
cucumber : '8.14.2',
junit : '4.13.2',
cucumberJunit: '7.11.2',
scalaTest : '3.2.14',
slf4j : '2.0.5'
]

ext.libs = [
jUnit : 'junit:junit:4.13.2',
jUnit : "junit:junit:${versions.junit}",
scala : "org.scala-lang:scala-library:${versions.scalaFull}",
cucumberScala: "io.cucumber:cucumber-scala_${versions.scala}:${versions.cucumber}",
cucumberJUnit: "io.cucumber:cucumber-junit:7.11.1",
cucumberJUnit: "io.cucumber:cucumber-junit:${versions.cucumberJunit}",
scalatest : [
"org.scalatest:scalatest_${versions.scala}:${versions.scalaTest}",
"org.scalatestplus:junit-4-13_${versions.scala}:${versions.scalaTest}.0",
],
slf4j : "org.slf4j:slf4j-log4j12:1.7.32"
slf4j : "org.slf4j:slf4j-log4j12:${versions.slf4j}"
]

subprojects {
Expand Down
4 changes: 2 additions & 2 deletions cucumber-scala/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ runIde {
}

patchPluginXml {
sinceBuild = "231.7515"
untilBuild = "231.7515.*"
sinceBuild = "231.8109"
untilBuild = "231.*"
}

buildSearchableOptions.enabled = false
Expand Down
7 changes: 7 additions & 0 deletions cucumber-scala/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@

<change-notes><![CDATA[
<ul>
<li>2023.1: Release for IntelliJ 2023.1 (build 231.8109.175)
<ol>
<li>Scala plugin 2023.1.16</li>
<li>Gherkin plugin 231.8109.91</li>
<li>cucumber-jvm-scala 8.14.2</li>
</ol>
</li>
<li>231.7515.13-EAP: Release for IntelliJ 2023.1-EAP (build 231.7515.13)
<ol>
<li>Scala plugin 2023.1.8</li>
Expand Down

0 comments on commit 803ab79

Please sign in to comment.