Skip to content

Commit a018aa4

Browse files
committed
更新IDEA版本gradle版本和插件版本说明信息
1 parent b9841a3 commit a018aa4

File tree

3 files changed

+37
-12
lines changed

3 files changed

+37
-12
lines changed

build.gradle

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
11
buildscript {
22
repositories {
3-
jcenter()
4-
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
53
mavenCentral()
4+
maven {
5+
url "https://oss.sonatype.org/content/repositories/snapshots/"
6+
}
7+
maven {
8+
url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'
9+
}
10+
}
11+
dependencies {
12+
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.5.0-SNAPSHOT"
613
}
714
}
815

9-
plugins {
10-
id 'java'
11-
id 'org.jetbrains.intellij' version '0.3.5'
12-
}
16+
//plugins {
17+
// id 'java'
18+
// id 'org.jetbrains.intellij' version '0.3.5'
19+
//}
1320

1421
//2.1 插件配置
1522
// 这两个插件是必备
1623
apply plugin: 'idea'
24+
apply plugin: 'java'
1725
apply plugin: 'org.jetbrains.intellij'
1826

1927
group 'com.sjhy'
20-
version '1.2.2-RELEASE'
28+
version '1.2.3-RELEASE'
2129

2230
sourceCompatibility = JavaVersion.VERSION_1_8
2331
targetCompatibility = JavaVersion.VERSION_1_8
@@ -30,8 +38,10 @@ repositories {
3038
dependencies {
3139
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
3240
testCompile group: 'junit', name: 'junit', version: '4.12'
33-
compileOnly "org.projectlombok:lombok:1.18.10"
34-
annotationProcessor "org.projectlombok:lombok:1.18.10"
41+
annotationProcessor 'org.projectlombok:lombok:1.18.2'
42+
compileOnly 'org.projectlombok:lombok:1.18.2'
43+
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
44+
testCompileOnly 'org.projectlombok:lombok:1.18.2'
3545
}
3646

3747
intellij {
@@ -40,8 +50,10 @@ intellij {
4050
// 沙箱目录位置,用于保存IDEA的设置,默认在build文件下面,防止clean,放在根目录下。
4151
sandboxDirectory = "${rootProject.rootDir}/idea-sandbox"
4252
// 开发环境运行时使用的版本
43-
version '2018.1.5'
53+
version '2020.1'
4454
type 'IU'
55+
// 各种版本去这里找
56+
// https://www.jetbrains.com/intellij-repository/releases
4557
// 依赖的插件
4658
plugins = ['DatabaseTools', 'Velocity']
4759
//Disables updating since-build attribute in plugin.xml

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

src/main/resources/META-INF/plugin.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>com.sjhy.plugin.easycode</id>
33
<name>Easy Code</name>
4-
<version>1.2.0</version>
4+
<version>1.2.3</version>
55
<vendor email="1353036300@qq.com" url="http://www.shujuhaiyang.com">数据海洋</vendor>
66

77
<description><![CDATA[
@@ -21,6 +21,19 @@
2121

2222

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

0 commit comments

Comments
 (0)