Skip to content

Commit 70252d7

Browse files
authored
Merge pull request #18680 from eugenp/enable-module
group and separate failing modules to allow enabling static-analysis-…
2 parents 58c0017 + 6db2f7b commit 70252d7

File tree

15 files changed

+51
-27
lines changed

15 files changed

+51
-27
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,6 +823,7 @@
823823
<module>spring-vault</module>
824824
<module>spring-web-modules</module>
825825
<module>spring-websockets</module>
826+
<module>static-analysis-modules</module>
826827
<module>tensorflow-java</module>
827828
<module>testing-modules</module>
828829
<module>timefold-solver</module>
@@ -1259,6 +1260,7 @@
12591260
<module>spring-vault</module>
12601261
<module>spring-web-modules</module>
12611262
<module>spring-websockets</module>
1263+
<module>static-analysis-modules</module>
12621264
<module>tensorflow-java</module>
12631265
<module>testing-modules</module>
12641266
<module>timefold-solver</module>
@@ -1493,7 +1495,6 @@
14931495
<module>spring-cloud-modules/spring-cloud-data-flow</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42054 -->
14941496
<module>spring-cloud-modules/spring-cloud-stream-starters</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42055 -->
14951497
<module>spring-jinq</module> <!--disabling the jinq modules, as the default build profile is failing due to bad mv files. Please refer: JAVA-31341-->
1496-
<module>static-analysis-modules</module> <!-- requires additional configuration to be compiled due to the JVM strong encapsulation -->
14971498
<module>tablesaw</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42037 -->
14981499
<module>spring-swagger-codegen-modules/openapi-custom-generator</module>
14991500
<module>spring-swagger-codegen-modules/openapi-custom-generator-api-client</module> <!-- cannot add the individual modules here because the order is not guaranteed -->
@@ -1558,7 +1559,6 @@
15581559
<module>spring-cloud-modules/spring-cloud-data-flow</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42054 -->
15591560
<module>spring-cloud-modules/spring-cloud-stream-starters</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42055 -->
15601561
<module>spring-jinq</module> <!--disabling the jinq modules, as the default build profile is failing due to bad mv files. Please refer: JAVA-31341-->
1561-
<module>static-analysis-modules</module> <!-- requires additional configuration to be compiled due to the JVM strong encapsulation -->
15621562
<module>tablesaw</module> <!-- failing after upgrading to jdk17--> <!-- JAVA-42037 -->
15631563
<module>spring-swagger-codegen-modules/openapi-custom-generator</module>
15641564
<module>spring-swagger-codegen-modules/openapi-custom-generator-api-client</module> <!-- cannot add the individual modules here because the order is not guaranteed -->

static-analysis-modules/error-prone-project/.mvn/jvm.config renamed to static-analysis-modules/error-prone-library/error-prone-project/.mvn/jvm.config

File renamed without changes.

static-analysis-modules/error-prone-project/pom.xml renamed to static-analysis-modules/error-prone-library/error-prone-project/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<parent>
99
<groupId>com.baeldung</groupId>
10-
<artifactId>static-analysis</artifactId>
10+
<artifactId>error-prone-library</artifactId>
1111
<version>1.0-SNAPSHOT</version>
1212
</parent>
1313

static-analysis-modules/error-prone-project/src/main/java/com/baeldung/BuggyClass.java renamed to static-analysis-modules/error-prone-library/error-prone-project/src/main/java/com/baeldung/BuggyClass.java

File renamed without changes.

static-analysis-modules/error-prone-project/src/main/java/com/baeldung/ClassWithEmptyMethod.java renamed to static-analysis-modules/error-prone-library/error-prone-project/src/main/java/com/baeldung/ClassWithEmptyMethod.java

File renamed without changes.

static-analysis-modules/my-bugchecker-plugin/pom.xml renamed to static-analysis-modules/error-prone-library/my-bugchecker-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<parent>
1010
<groupId>com.baeldung</groupId>
11-
<artifactId>static-analysis</artifactId>
11+
<artifactId>error-prone-library</artifactId>
1212
<version>1.0-SNAPSHOT</version>
1313
</parent>
1414

static-analysis-modules/my-bugchecker-plugin/src/main/java/com/baeldung/EmptyMethodChecker.java renamed to static-analysis-modules/error-prone-library/my-bugchecker-plugin/src/main/java/com/baeldung/EmptyMethodChecker.java

File renamed without changes.

static-analysis-modules/pmd/pom.xml renamed to static-analysis-modules/error-prone-library/pmd/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<parent>
99
<groupId>com.baeldung</groupId>
10-
<artifactId>static-analysis</artifactId>
10+
<artifactId>error-prone-library</artifactId>
1111
<version>1.0-SNAPSHOT</version>
1212
</parent>
1313

static-analysis-modules/pmd/src/main/java/com/baeldung/pmd/Cnt.java renamed to static-analysis-modules/error-prone-library/pmd/src/main/java/com/baeldung/pmd/Cnt.java

File renamed without changes.

static-analysis-modules/pmd/src/main/resources/customruleset.xml renamed to static-analysis-modules/error-prone-library/pmd/src/main/resources/customruleset.xml

File renamed without changes.

0 commit comments

Comments
 (0)