Skip to content

Commit

Permalink
支持2022.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xuan698400 committed Feb 15, 2023
1 parent 1805535 commit deba326
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ gradle-app.setting
!/libs/rsyntaxtextarea-3.1.1-javadoc.jar
!/libs/rsyntaxtextarea-3.1.1-sources.jar
!/libs/tbbpm-jar-with-dependencies.jar
!/libs/compileflow-1.2.0-SNAPSHOT-jar-with-dependencies.jar
!/jarback/compileflow-1.2.0-SNAPSHOT-jar-with-dependencies.jar
!/libs/logback-classic-1.1.8.jar
!/libs/logback-core-1.1.8.jar
*.war
Expand Down
3 changes: 3 additions & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ https://github.com/compileflow/compileflow-designer-upgrade
* 2021.3的idea支持 <br>
* bugfix:1.0.15 (2022.5.31)by xuan
* 2022.1的idea支持 <br>
* bugfix:1.0.16 (2023.2.15)by xuan(感谢:chenqiyue分支PR的支持)
* 2022.3的idea支持 <br>
* 修复一些BUG <br>

Expand Down
26 changes: 16 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.6.0'
id 'org.jetbrains.intellij' version '1.12.0'
// id "org.jetbrains.kotlin.jvm" version '1.2.70'
}


group 'com.alibaba.compileflow.designer'
version '1.0.15'
version '1.0.16'

sourceCompatibility = 1.8

Expand Down Expand Up @@ -36,13 +36,15 @@ sourceSets.main.resources {
allprojects {

dependencies {
implementation fileTree(dir: 'libs', includes: ['*.jar'])
// compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile name: 'miglayout-core-5.3-SNAPSHOT'
compile name: 'miglayout-swing-5.3-SNAPSHOT'
compile name: 'mxgraph-all'
compile name: 'compileflow-1.2.0-SNAPSHOT-jar-with-dependencies'
compile name: 'logback-core-1.1.8'
compile name: 'logback-classic-1.1.8'
// compile name: 'miglayout-core-5.3-SNAPSHOT'
// compile name: 'miglayout-swing-5.3-SNAPSHOT'
// compile name: 'mxgraph-all'
// compile name: 'compileflow-1.2.0-SNAPSHOT-jar-with-dependencies'
// compile name: 'logback-core-1.1.8'
// compile name: 'logback-classic-1.1.8'

// testCompile group: 'junit', name: 'junit', version: '4.12'
// testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
}
Expand All @@ -51,7 +53,7 @@ allprojects {
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// version '2018.2'
version = '2022.1'
version = '2022.3'
plugins = ['java']
}
patchPluginXml {
Expand Down Expand Up @@ -108,8 +110,12 @@ patchPluginXml {
<em>1.0.15 bugfix</em><br>
1. 2022.1的idea支持 <br>
<em>1.0.16 bugfix(感谢chenqiyue的PR分支支持)</em><br>
1. 2022.3的idea支持 <br>
2. 修复部分bug <br>
"""

sinceBuild = '162.*'
untilBuild = '222.*'
untilBuild = '223.*'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
public class CompileFlow {

public static final String VERSION = "1.0.15";
public static final String VERSION = "1.0.16";

public static final String HOME_PAGE = "https://github.com/alibaba/compileflow-idea-designer";
}
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>com.alibaba.compileflow.designer</id>
<name>compileflow idea设计器</name>
<version>1.0.15</version>
<version>1.0.16</version>
<vendor email="xuan.xa@alibaba-inc.com" url="https://github.com/alibaba/compileflow-idea-designer">阿里巴巴</vendor>

<description><![CDATA[
Expand Down

0 comments on commit deba326

Please sign in to comment.