Skip to content

Commit

Permalink
Fixed minimum version of IntelliJ to 2016.1 + switched to Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
bjansen committed Jul 14, 2019
1 parent 8067506 commit 66216d6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

<target name="compile">
<mkdir dir="${plugin.output.dir}"/>
<javac source="1.6" target="1.6" destdir="${plugin.output.dir}">
<javac source="1.8" target="1.8" destdir="${plugin.output.dir}">
<classpath refid="jdk.classpath"/>
<src refid="plugin.sourcepath"/>
</javac>
Expand All @@ -91,7 +91,7 @@

<target name="compile.tests" depends="compile">
<mkdir dir="${plugin.testoutput.dir}"/>
<javac source="1.6" target="1.6" destdir="${plugin.testoutput.dir}">
<javac source="1.8" target="1.8" destdir="${plugin.testoutput.dir}">
<classpath refid="jdk.classpath"/>
<src refid="plugin.testsourcepath"/>
<classpath refid="plugin.classpath"/>
Expand Down
7 changes: 4 additions & 3 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin version="2">
<id>com.plopiplop.leekwars</id>
<name>LeekScript</name>
<version>1.2.1</version>
<version>1.2.2</version>
<vendor>bjansen</vendor>

<description><![CDATA[
Expand All @@ -10,10 +10,11 @@

<change-notes><![CDATA[
<ul>
<li>Fixed parsing of fun()() expressions (<a href="https://github.com/bjansen/IDEALeek/issues/36">#36</a>)</li>
<li>Fixed connection issues to the LeekWars API (<a href="https://github.com/bjansen/IDEALeek/issues/37">#37</a>)</li>
<li>Minimum version is now IntelliJ IDEA 2016.1</li>
</ul>
]]></change-notes>
<idea-version since-build="141.3058"/>
<idea-version since-build="145"/>
<depends>com.intellij.modules.lang</depends>

<extensions defaultExtensionNs="com.intellij">
Expand Down

0 comments on commit 66216d6

Please sign in to comment.