Skip to content

Commit

Permalink
解决打包编译问题,版本被限制无法使用
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoujia committed Oct 27, 2023
1 parent 23bd0c3 commit d1cac0d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 31 deletions.
28 changes: 28 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.7.2'
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

group = "cn.olange"
version = "1.0.5.2"

repositories {
mavenCentral()
}

dependencies {
implementation 'junit:junit:4.12'
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = "IC-2020.3.3"
setPlugins("java")
}
def task =tasks.getByName('patchPluginXml');
task.enabled = false
29 changes: 0 additions & 29 deletions build.gradle.kts

This file was deleted.

File renamed without changes.
8 changes: 6 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<idea-plugin>
<id>cn.olange.rule</id>
<name>any-rule</name>
<version>1.0.5.1</version>
<vendor email="[email protected]" url="https://github.com/zhoriya/idea-rule">any-rule</vendor>
<version>1.0.5.2</version>
<vendor email="[email protected]" url="https://github.com/Linindoo/idea-rule">any-rule</vendor>

<description><![CDATA[
<html>
Expand All @@ -22,6 +22,10 @@
]]></description>
<change-notes><![CDATA[
<html>
<p> Version 1.0.5.2</p>
<ul>
<li>[fix] 修复版本打包问题</li>
</ul>
<p> Version 1.0.5.1</p>
<ul>
<li>[fix] 修复冗余字符导致的正则校验失败的bug</li>
Expand Down

0 comments on commit d1cac0d

Please sign in to comment.