Skip to content

Commit 88ac7f2

Browse files
Merge pull request #22 from withsmilo/support_intellij_2016_2
Support for IntelliJ 2016.2
2 parents 0d18771 + 84470d7 commit 88ac7f2

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
intellij-cucumber-scala 0.3.4
1+
intellij-cucumber-scala 0.3.5
22
=======================
33

44
[![Build Status](https://travis-ci.org/danielwegener/intellij-cucumber-scala.svg)](https://travis-ci.org/danielwegener/intellij-cucumber-scala)

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import sbt.Keys._
33

44
name := "Cucumber for Scala"
55
normalizedName := "intellij-cucumber-scala"
6-
version := "0.3.4"
6+
version := "0.3.5"
77
scalaVersion := "2.11.8"
88

9-
lazy val `scala-plugin` = IdeaPlugin.Zip("scala-plugin", url("https://plugins.jetbrains.com/files/1347/24700/scala-intellij-bin-3.0.0.zip"))
9+
lazy val `scala-plugin` = IdeaPlugin.Zip("scala-plugin", url("https://plugins.jetbrains.com/files/1347/27087/scala-intellij-bin-2016.2.0.zip"))
1010
lazy val `cucumber-java` = IdeaPlugin.Zip("cucumber-java", url("https://plugins.jetbrains.com/files/7212/22138/cucumber-java.zip"))
1111
lazy val cucumber = IdeaPlugin.Zip("cucumber", url("https://plugins.jetbrains.com/files/7211/22137/cucumber.zip"))
1212

@@ -19,7 +19,7 @@ lazy val `cucumber-scala` = project.in(file( "."))
1919
javacOptions in Global ++= Seq("-source", "1.6", "-target", "1.6"),
2020
scalacOptions in Global += "-target:jvm-1.6",
2121
ideaExternalPlugins ++= Seq(`scala-plugin`, cucumber, `cucumber-java`),
22-
ideaBuild in ThisBuild := "145.258.11",
22+
ideaBuild in ThisBuild := "162.1121.10",
2323
ideaEdition in ThisBuild := IdeaEdition.Community,
2424
fork in Test := true,
2525
parallelExecution := true

src/main/resources/META-INF/plugin.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<idea-plugin version="2">
44
<id>com.github.danielwegener.cucumber-scala</id>
55
<name>Cucumber for Scala</name>
6-
<version>0.3.4</version>
6+
<version>0.3.5</version>
77
<vendor email="[email protected]" url="http://daniel.wegener.me">Daniel Wegener</vendor>
88

99
<description><![CDATA[
@@ -22,11 +22,12 @@
2222
0.3.2: Release for IntelliJ 15.0 (unchanged functionality)
2323
0.3.3: Release for IntelliJ 15.0.2, scala-plugin 2.0.4, support inheriting step definitions from traits (#16)
2424
0.3.4: Release for IntelliJ 2016.1 (scala-plugin 3.0.0)
25+
0.3.5: Release for IntelliJ 2016.2 (scala-plugin 2016.2.0)
2526
]]>
2627
</change-notes>
2728

2829
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
29-
<idea-version since-build="145.258" until-build="146.0"/>
30+
<idea-version since-build="162.1121" until-build="163.0"/>
3031

3132
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
3233
on how to target different products -->
@@ -40,4 +41,4 @@
4041
implementation="com.github.danielwegener.intellij.cucumber.scala.CucumberScalaExtension"/>
4142
</extensions>
4243

43-
</idea-plugin>
44+
</idea-plugin>

0 commit comments

Comments
 (0)