mirror of
https://github.com/chylex/IntelliJ-Rainbow-Brackets.git
synced 2025-05-12 06:34:03 +02:00
Now rainbow brackets support IntelliJ IDEA based IDEs version 14 and above
This commit is contained in:
parent
50374b2cef
commit
9ae0c26cd5
@ -1,4 +1,4 @@
|
||||
# Rainbow Brackets [](https://travis-ci.org/izhangzhihao/intellij-rainbow-brackets) [](https://plugins.jetbrains.com/plugin/10080-rainbow-brackets)
|
||||
# Rainbow Brackets [](https://travis-ci.org/izhangzhihao/intellij-rainbow-brackets) [](https://plugins.jetbrains.com/plugin/10080-rainbow-brackets)
|
||||
|
||||
## Compatible with:
|
||||
|
||||
|
14
build.gradle
14
build.gradle
@ -9,12 +9,12 @@ buildscript {
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'org.jetbrains.intellij' version "0.2.17"
|
||||
id "org.jetbrains.intellij" version "0.2.17"
|
||||
}
|
||||
|
||||
allprojects {
|
||||
|
||||
apply plugin: 'org.jetbrains.intellij'
|
||||
apply plugin: "org.jetbrains.intellij"
|
||||
|
||||
intellij {
|
||||
pluginName name
|
||||
@ -26,19 +26,19 @@ allprojects {
|
||||
sandboxDirectory project.rootDir.canonicalPath + "/.sandbox"
|
||||
}
|
||||
|
||||
apply plugin: 'kotlin'
|
||||
apply plugin: "kotlin"
|
||||
|
||||
sourceCompatibility = javaVersion
|
||||
targetCompatibility = javaVersion
|
||||
|
||||
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
|
||||
tasks.withType(JavaCompile) { options.encoding = "UTF-8" }
|
||||
|
||||
jar.archiveName = 'intellij-rainbow-brackets.jar'
|
||||
jar.archiveName = "intellij-rainbow-brackets.jar"
|
||||
|
||||
test {
|
||||
testLogging {
|
||||
events "passed", "skipped", "failed"
|
||||
exceptionFormat = 'full'
|
||||
exceptionFormat = "full"
|
||||
}
|
||||
}
|
||||
|
||||
@ -59,7 +59,7 @@ allprojects {
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'idea'
|
||||
apply plugin: "idea"
|
||||
|
||||
idea {
|
||||
project {
|
||||
|
@ -1,9 +1,11 @@
|
||||
group = "com.github.izhangzhihao"
|
||||
name = "Rainbow Brackets"
|
||||
ideaVersion = IC-2017.2
|
||||
#ideaVersion = IC-2017.2
|
||||
#ideaVersion = 2016.1
|
||||
ideaVersion = 14
|
||||
javaVersion = 1.8
|
||||
kotlinVersion = 1.1.51
|
||||
version = 1.0
|
||||
version = 1.1
|
||||
buildNumber = SNAPSHOT
|
||||
downloadIdeaSources = false
|
||||
publishUsername = izhangzhihao
|
||||
|
@ -8,6 +8,10 @@
|
||||
]]></description>
|
||||
|
||||
<change-notes><![CDATA[
|
||||
<p>1.1:</p>
|
||||
<ul>
|
||||
<li>Support IntelliJ IDEA based IDEs version 14 and above</li>
|
||||
</ul>
|
||||
<p>1.0:</p>
|
||||
<ul>
|
||||
<li>Initial release</li>
|
||||
@ -16,7 +20,7 @@
|
||||
</change-notes>
|
||||
|
||||
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
|
||||
<idea-version since-build="172"/>
|
||||
<idea-version since-build="139"/>
|
||||
|
||||
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
|
||||
on how to target different products -->
|
||||
|
Loading…
Reference in New Issue
Block a user