File tree Expand file tree Collapse file tree 4 files changed +13
-10
lines changed
src/main/java/org/mapstruct/intellij/util Expand file tree Collapse file tree 4 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 11plugins {
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
Original file line number Diff line number Diff line change 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 <!--
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
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. -->
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" />
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments