Skip to content

Commit 88881dd

Browse files
committedDec 2, 2015
Support / Require IDEA 15 in 1.8.0-SNAPSHOT
1 parent b9dd144 commit 88881dd

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Please reports issues to the GitHub issue tracker
2323

2424
To build the project:
2525

26-
% mvn -Didea.home="/Applications/IntelliJ Idea 13.1.app" install
26+
% mvn -Didea.home="/Applications/IntelliJ Idea 15.app/Contents" install
2727
% ls -la sbt-dist/target/idea-sbt-plugin-*.zip # File, Settings, Plugins, Install from Disk
2828

2929
You can also open this project in IntelliJ. Point the Project SDK to an IntelliJ Plugin SDK,

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.orfjackal.idea-sbt-plugin</groupId>
66
<artifactId>sbt</artifactId>
7-
<version>1.7.1-SNAPSHOT</version>
7+
<version>1.8.0-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

1010
<modules>

‎sbt-dist/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>net.orfjackal.idea-sbt-plugin</groupId>
77
<artifactId>sbt</artifactId>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.8.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>sbt-dist</artifactId>

‎sbt-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>net.orfjackal.idea-sbt-plugin</groupId>
77
<artifactId>sbt</artifactId>
8-
<version>1.7.1-SNAPSHOT</version>
8+
<version>1.8.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>sbt-plugin</artifactId>

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<id>SBT</id>
55
<name>SBT</name>
66
<version>${project.version}</version>
7-
<idea-version since-build="141.177"/>
7+
<idea-version since-build="143.381"/>
88
<category>Build</category>
99

1010
<vendor url="http://www.orfjackal.net">Esko Luontola</vendor>
@@ -22,6 +22,9 @@
2222
]]></description>
2323
<change-notes><![CDATA[
2424
<ul>
25+
<dt><b>1.8.0 (2015-12-03)</b></dt>
26+
<li>Be compatible with / require IntelliJ 15</li>
27+
2528
<dt><b>1.7.0 (2014-03-26)</b></dt>
2629
<li>Be compatible with / require IntelliJ 14.1</li>
2730
<li>Revert UI to a TextConsole rather than a LanguageConsole. We lose command history. Hopefully we can find a way to restore this feature in a subsequent release once we adapt to changes in IntelliJ</li>

0 commit comments

Comments
 (0)
Please sign in to comment.