Skip to content

Commit

Permalink
更新IDEA版本gradle版本和插件版本说明信息
Browse files Browse the repository at this point in the history
  • Loading branch information
makejavas committed Apr 10, 2020
1 parent b9841a3 commit a018aa4
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 12 deletions.
32 changes: 22 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
buildscript {
repositories {
jcenter()
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'
}
}
dependencies {
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.5.0-SNAPSHOT"
}
}

plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.3.5'
}
//plugins {
// id 'java'
// id 'org.jetbrains.intellij' version '0.3.5'
//}

//2.1 插件配置
// 这两个插件是必备
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'org.jetbrains.intellij'

group 'com.sjhy'
version '1.2.2-RELEASE'
version '1.2.3-RELEASE'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -30,8 +38,10 @@ repositories {
dependencies {
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
testCompile group: 'junit', name: 'junit', version: '4.12'
compileOnly "org.projectlombok:lombok:1.18.10"
annotationProcessor "org.projectlombok:lombok:1.18.10"
annotationProcessor 'org.projectlombok:lombok:1.18.2'
compileOnly 'org.projectlombok:lombok:1.18.2'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
testCompileOnly 'org.projectlombok:lombok:1.18.2'
}

intellij {
Expand All @@ -40,8 +50,10 @@ intellij {
// 沙箱目录位置,用于保存IDEA的设置,默认在build文件下面,防止clean,放在根目录下。
sandboxDirectory = "${rootProject.rootDir}/idea-sandbox"
// 开发环境运行时使用的版本
version '2018.1.5'
version '2020.1'
type 'IU'
// 各种版本去这里找
// https://www.jetbrains.com/intellij-repository/releases
// 依赖的插件
plugins = ['DatabaseTools', 'Velocity']
//Disables updating since-build attribute in plugin.xml
Expand Down
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.8-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
15 changes: 14 additions & 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.sjhy.plugin.easycode</id>
<name>Easy Code</name>
<version>1.2.0</version>
<version>1.2.3</version>
<vendor email="1353036300@qq.com" url="http://www.shujuhaiyang.com">数据海洋</vendor>

<description><![CDATA[
Expand All @@ -21,6 +21,19 @@


<change-notes><![CDATA[
<p>1.2.3-RELEASE</p>
<ul>
<li>1.Compatible with idea2020.1</li>
<li>2.Resolve null pointer exceptions for multiple projects (provided by tangcent)</li>
<li>3.Optimize some details</li>
<li>Thank:tangcent,czb,lyd123qw2008</li>
</ul>
<ul>
<li>1.兼容IDEA2020.1版本</li>
<li>2.解决多项目的空指针异常问题(由tangcent提供)</li>
<li>3.优化部分细节问题</li>
<li>感谢:tangcent,czb,lyd123qw2008贡献的PR</li>
</ul>
<p>1.2.2-RELEASE</p>
<ul>
<li>1.Fix unavailability of online import function.</li>
Expand Down

0 comments on commit a018aa4

Please sign in to comment.