Skip to content

Commit

Permalink
build: update dependencies and IDEA 2020.1 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
lppedd committed Jan 20, 2020
1 parent 07becb2 commit a4211c9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ import org.jetbrains.intellij.tasks.PatchPluginXmlTask

plugins {
java
id("org.jetbrains.intellij") version "0.4.13"
kotlin("jvm") version "1.3.60"
id("org.jetbrains.intellij") version "0.4.15"
kotlin("jvm") version "1.3.61"
}

group = "com.github.lppedd"
version = "0.2.1"
version = "0.2.2"

repositories {
mavenCentral()
}

dependencies {
implementation(kotlin("stdlib-jdk8", "1.3.60"))
implementation(kotlin("stdlib-jdk8", "1.3.61"))
implementation("com.google.code.gson", "gson", "2.8.6")
testCompile("junit:junit:4.12")
}
Expand Down Expand Up @@ -43,7 +43,7 @@ intellij {
tasks.getByName<PatchPluginXmlTask>("patchPluginXml") {
version(project.version)
sinceBuild("192")
untilBuild("193.*")
untilBuild("201.*")
pluginDescription(File("plugin-description.html").readText(Charsets.UTF_8))
changeNotes(File("change-notes/${version.replace('.', '_')}.html").readText(Charsets.UTF_8))
}
9 changes: 9 additions & 0 deletions change-notes/0_2_2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<h3>0.2.2 (21/01/2020)</h3>
<p>
Fourth alpha release.<br/>
Build changes
</p>
<ul>
<li>Compatibility with IDEA 2020.1</li>
<li>Dependencies update</li>
</ul>

0 comments on commit a4211c9

Please sign in to comment.