Skip to content

Commit eb786fa

Browse files
committed
Upgrade Gradle to 6.3 and upgrade plugins
1 parent 8ff91bd commit eb786fa

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
2-
id "org.jetbrains.intellij" version "0.4.9"
2+
id "org.jetbrains.intellij" version "0.4.18"
33
id "com.github.hierynomus.license" version "0.14.0"
4-
id "de.undercouch.download" version "3.4.3"
4+
id "de.undercouch.download" version "4.0.4"
55
}
66

77

@@ -22,7 +22,7 @@ repositories {
2222
mavenLocal()
2323
mavenCentral()
2424
maven {
25-
url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'
25+
url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'
2626
}
2727
}
2828

config/checkstyle/checkstyle.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
<property name="basedir" value="${basedir}"/>
1616
-->
1717

18+
<!-- <property name="cacheFile" value="${checkstyle.cache.file}"/>-->
19+
1820
<!-- Checks that each Java package has a Javadoc file used for commenting. -->
1921
<!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
2022
<!--
@@ -29,6 +31,13 @@
2931

3032
<module name="FileLength"/>
3133

34+
<module name="LineLength">
35+
<property name="max" value="120"/>
36+
<property name="fileExtensions" value="java" />
37+
</module>
38+
39+
<module name="SuppressWithPlainTextCommentFilter"/>
40+
3241
<!-- Following interprets the header file as regular expressions. -->
3342
<!-- <module name="RegexpHeader"/> -->
3443

@@ -60,8 +69,6 @@
6069

6170
<module name="TreeWalker">
6271

63-
<!--<property name="cacheFile" value="${checkstyle.cache.file}"/>-->
64-
6572
<module name="SuppressWarningsHolder"/>
6673

6774
<!-- Checks for Javadoc comments. -->
@@ -115,9 +122,6 @@
115122

116123
<!-- Checks for Size Violations. -->
117124
<!-- See http://checkstyle.sf.net/config_sizes.html -->
118-
<module name="LineLength">
119-
<property name="max" value="120"/>
120-
</module>
121125
<module name="MethodLength"/>
122126
<module name="ParameterNumber">
123127
<property name="max" value="10"/>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/java/org/mapstruct/intellij/util/MapstructUtil.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,6 @@ public static boolean isMapStructBuilderSupportPresent(@NotNull PsiFile psiFile)
478478
} );
479479
}
480480

481-
482481
/**
483482
* Checks if MapStruct jdk8 is within the provided module. The MapStruct JDK 8 module is present when the
484483
* {@link Mapping} annotation is annotated with {@link java.lang.annotation.Repeatable}

0 commit comments

Comments
 (0)