Skip to content

Commit

Permalink
Merge pull request kukido#60 from kukido/am.version-update
Browse files Browse the repository at this point in the history
Version update, Ant update
  • Loading branch information
kukido authored Jun 17, 2024
2 parents 9d410f3 + 7894be1 commit 58cffdf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id("java")
id("org.jetbrains.intellij") version "1.16.0"
id("org.jetbrains.intellij") version "1.17.3"
id("org.jetbrains.kotlin.jvm") version "1.9.10"
}

group = "org.jetbrains"
version = "0.9.3"
version = "0.9.4"

repositories {
mavenCentral()
Expand All @@ -17,11 +17,11 @@ java {

// See https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.2")
version.set("2024.1.3")
plugins.set(listOf(
"com.intellij.java",
"org.jetbrains.idea.maven",
"AntSupport",
"AntSupport:241.17011.48",
))
}

Expand All @@ -32,7 +32,7 @@ tasks {

patchPluginXml {
version.set("${project.version}")
sinceBuild.set("232")
sinceBuild.set("241")
}

compileKotlin {
Expand Down
6 changes: 4 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<idea-plugin>
<id>com.kukido.eclipser</id>
<name>Eclipser</name>
<version>0.9.3</version>
<version>0.9.4</version>
<vendor email="mclovin@kukido.com" url="https://github.com/kukido/eclipser">Kukido</vendor>
<depends>org.jetbrains.idea.maven</depends>
<depends>com.intellij.modules.java</depends>
Expand All @@ -23,6 +23,8 @@

<change-notes><![CDATA[
<dl>
<dt>0.9.3</dt>
<dd>- updated IntelliJ version
<dt>0.9.3</dt>
<dd>- updated IntelliJ version
<dd>- switched to Kotlin build script
Expand Down Expand Up @@ -95,7 +97,7 @@
]]></change-notes>

<!-- please see https://jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="232"/>
<idea-version since-build="241"/>

<actions>
<action id="eclipser" class="com.kukido.eclipser.EclipserAction" text="Convert with Eclipser"
Expand Down

0 comments on commit 58cffdf

Please sign in to comment.