From 6fbec8fdcc032eae34b35bf21612db7597428b31 Mon Sep 17 00:00:00 2001 From: Frank Reyes Date: Mon, 24 Jun 2024 09:27:53 +0200 Subject: [PATCH 1/3] Updating project --- .gitignore | 1 + .../java/se/kth/breaking_changes/Main.java | 61 +------------------ src/main/java/se/kth/core/Main.java | 51 +--------------- src/main/java/se/kth/java_version/Main.java | 11 +--- src/main/java/se/kth/log_Analyzer/Main.java | 21 +------ src/main/java/se/kth/spoon_compare/Main.java | 36 +---------- .../java/se/kth/transitive_changes/Main.java | 24 +------- 7 files changed, 7 insertions(+), 198 deletions(-) diff --git a/.gitignore b/.gitignore index 30a2ddc..6615ac4 100644 --- a/.gitignore +++ b/.gitignore @@ -30,6 +30,7 @@ target/ build/ !**/src/main/**/build/ !**/src/test/**/build/ +/Resources/ ### VS Code ### .vscode/ diff --git a/src/main/java/se/kth/breaking_changes/Main.java b/src/main/java/se/kth/breaking_changes/Main.java index 940a654..eba1051 100644 --- a/src/main/java/se/kth/breaking_changes/Main.java +++ b/src/main/java/se/kth/breaking_changes/Main.java @@ -1,67 +1,8 @@ package se.kth.breaking_changes; -import se.kth.japianalysis.BreakingChange; - -import java.nio.file.Path; -import java.util.List; -import java.util.Set; - public class Main { public static void main(String[] args) { - - ApiMetadata apiMetadata = new ApiMetadata(Path.of("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/0abf7148300f40a1da0538ab060552bca4a2f1d8/jasperreports-6.18.1.jar")); - ApiMetadata apiMetadata1 = new ApiMetadata(Path.of("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/0abf7148300f40a1da0538ab060552bca4a2f1d8/jasperreports-6.19.1.jar")); - - - JApiCmpAnalyze jApiCmpAnalyze = new JApiCmpAnalyze( - apiMetadata, - apiMetadata1 - ); - - -// Set apiChanges = jApiCmpAnalyze.useJApiCmp(); - - List apiChanges = jApiCmpAnalyze.useJApiCmp_v2(); - - - - System.out.println("Number of changes: " + apiChanges.size()); - -// for (ApiChange apiChange : apiChanges) { -// System.out.println(apiChange); -// } - - -// List list = -// getBreakingCommit(Path.of("/Users/frank/Documents/Work/PHD/chains-project/paper/bump/data/benchmark")); -// -// -// for (BreakingUpdateMetadata breakingUpdate : list) { -// boolean result = ApiMetadata.download(breakingUpdate.updatedDependency().dependencyGroupID(), -// breakingUpdate.updatedDependency().dependencyArtifactID(), -// breakingUpdate.updatedDependency().newVersion()); -// -// if (result) { -// System.out.println("Downloaded " + breakingUpdate.updatedDependency().dependencyArtifactID() + "-" + breakingUpdate.updatedDependency().newVersion()); -// } else { -// System.out.println("Failed to download " + breakingUpdate.updatedDependency().dependencyArtifactID() + "-" + breakingUpdate.updatedDependency().newVersion()); -// } -// -// result = ApiMetadata.download(breakingUpdate.updatedDependency().dependencyGroupID(), -// breakingUpdate.updatedDependency().dependencyArtifactID(), -// breakingUpdate.updatedDependency().previousVersion()); -// -// if (result) { -// System.out.println("Downloaded " + breakingUpdate.updatedDependency().dependencyArtifactID() + "-" + breakingUpdate.updatedDependency().newVersion()); -// } else { -// System.out.println("Failed to download " + breakingUpdate.updatedDependency().dependencyArtifactID() + "-" + breakingUpdate.updatedDependency().newVersion()); -// } - -// } - - + System.out.println("Hello World"); } - - } diff --git a/src/main/java/se/kth/core/Main.java b/src/main/java/se/kth/core/Main.java index 5c5fc86..936ec77 100644 --- a/src/main/java/se/kth/core/Main.java +++ b/src/main/java/se/kth/core/Main.java @@ -1,58 +1,9 @@ package se.kth.core; -import se.kth.breaking_changes.ApiChange; -import se.kth.breaking_changes.ApiMetadata; -import se.kth.breaking_changes.JApiCmpAnalyze; -import se.kth.explaining.CompilationErrorTemplate; -import se.kth.explaining.ExplanationTemplate; -import se.kth.log_Analyzer.MavenErrorLog; -import se.kth.log_Analyzer.MavenLogAnalyzer; - -import java.io.File; -import java.io.IOException; -import java.nio.file.Path; -import java.util.Set; - public class Main { public static void main(String[] args) { - - Path oldDependency = Path.of("/Users/frank/Downloads/Test_Failures/log4j-api-2.16.0.jar"); - Path newDependency = Path.of("/Users/frank/Downloads/Test_Failures/log4j-api-2.18.0.jar"); - - ApiMetadata apiMetadata = new ApiMetadata(oldDependency); - ApiMetadata apiMetadata1 = new ApiMetadata(newDependency); - - JApiCmpAnalyze jApiCmpAnalyze = new JApiCmpAnalyze( - apiMetadata, - apiMetadata1 - ); - - Set apiChanges = jApiCmpAnalyze.useJApiCmp(); - try { - MavenErrorLog errorLog = new MavenLogAnalyzer(new File("/Users/frank/Downloads/Test_Failures/webapp/1eb6d9d5b2a07720a0839457cee81e066dd932f2.log")).analyzeCompilationErrors(); - - ApiMetadata newApiVersion = new ApiMetadata(newDependency.toFile().getName(), newDependency); - ApiMetadata oldApiVersion = new ApiMetadata(oldDependency.toFile().getName(), oldDependency); - - CombineResults combineResults = new CombineResults(apiChanges, newApiVersion, oldApiVersion, errorLog,null); - - combineResults.setDependencyGroupID("org.apache.logging.log4j"); - - combineResults.setProject("/Users/frank/Downloads/Test_Failures"); - - Changes changes = combineResults.analyze(); - changes.changes().forEach(change -> { -// ExplanationTemplate explanationTemplate = new CompilationErrorTemplate(changes, "change"); -// explanationTemplate.generateTemplate(); - } - ); - - - } catch (IOException e) { - throw new RuntimeException(e); - } - + System.out.println("Hello World"); } } diff --git a/src/main/java/se/kth/java_version/Main.java b/src/main/java/se/kth/java_version/Main.java index a746ebe..8a525fe 100644 --- a/src/main/java/se/kth/java_version/Main.java +++ b/src/main/java/se/kth/java_version/Main.java @@ -12,16 +12,7 @@ public class Main { public static void main(String[] args) throws IOException { - - String projectPath = "/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/11be71ab8713fe987785e9e25e4f3e410e709ab9/camunda-platform-7-mockito"; - String logFile = "/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/bad55510363bde900a60f13ecc744e0c244397d4/micronaut-openapi-codegen/bad55510363bde900a60f13ecc744e0c244397d4.log"; - Changes_V2 changes = new Changes_V2( - new ApiMetadata("1.0.0", Path.of("path/to/old/Oldapi.jar")), - new ApiMetadata("1.0.1", Path.of("path/to/new/Newapi.jar") - )); - generateVersionExplanation(changes, projectPath, logFile); - - + System.out.println("Hello World"); } diff --git a/src/main/java/se/kth/log_Analyzer/Main.java b/src/main/java/se/kth/log_Analyzer/Main.java index 9f1c076..bf4bfe2 100644 --- a/src/main/java/se/kth/log_Analyzer/Main.java +++ b/src/main/java/se/kth/log_Analyzer/Main.java @@ -5,25 +5,6 @@ public class Main { public static void main(String[] args) { - - MavenLogAnalyzer mavenLog = new MavenLogAnalyzer(new File("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/10d7545c5771b03dd9f6122bd5973a759eb2cd03/lithium/10d7545c5771b03dd9f6122bd5973a759eb2cd03.log")); - - try { - MavenErrorLog mavenErrorLog = mavenLog.analyzeCompilationErrors(); - - mavenErrorLog.getErrorInfo().forEach((k, v) -> { - v.forEach(errorInfo -> { - System.out.println("Line: " + errorInfo.getClientLinePosition()); - System.out.println("Error: " + errorInfo.getErrorMessage()); - System.out.println(errorInfo.getAdditionalInfo()); - System.out.println("***"); - }); - }); - - } catch (IOException e) { - throw new RuntimeException(e); - } - - + System.out.println("Hello World"); } } diff --git a/src/main/java/se/kth/spoon_compare/Main.java b/src/main/java/se/kth/spoon_compare/Main.java index 94be5a3..e9e7cfa 100644 --- a/src/main/java/se/kth/spoon_compare/Main.java +++ b/src/main/java/se/kth/spoon_compare/Main.java @@ -16,41 +16,7 @@ public class Main { public static void main(String[] args) { - - MavenLogAnalyzer mavenLog = new MavenLogAnalyzer(new File("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/5cf5a482bd430d81257b4ecd85b3d4f7da911621/jakartaee-mvc-sample/5cf5a482bd430d81257b4ecd85b3d4f7da911621.log")); - - - try { - - ApiMetadata apiMetadata = new ApiMetadata(Path.of("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/5cf5a482bd430d81257b4ecd85b3d4f7da911621/jakarta.mvc-api-1.1.0.jar")); - ApiMetadata apiMetadata1 = new ApiMetadata(Path.of("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/5cf5a482bd430d81257b4ecd85b3d4f7da911621/jakarta.mvc-api-2.0.1.jar")); - - JApiCmpAnalyze jApiCmpAnalyze = new JApiCmpAnalyze( - apiMetadata, - apiMetadata1 - ); - - - Set apiChanges = jApiCmpAnalyze.useJApiCmp(); - - - MavenErrorLog log = mavenLog.analyzeCompilationErrors(); - String project = "/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/5cf5a482bd430d81257b4ecd85b3d4f7da911621"; - - log.getErrorInfo().forEach((k, v) -> { - System.out.println(k); -// v.forEach(System.out::println); - SpoonAnalyzer spoonAnalyzer = new SpoonAnalyzer(v, apiChanges,null); - List results = spoonAnalyzer.applySpoon(project + k); - - System.out.println("Amount of instructions: " + results.size()); - }); - - - } catch (IOException e) { - throw new RuntimeException(e); - } - + System.out.println("Hello World"); } } diff --git a/src/main/java/se/kth/transitive_changes/Main.java b/src/main/java/se/kth/transitive_changes/Main.java index 0537055..a0b23a6 100644 --- a/src/main/java/se/kth/transitive_changes/Main.java +++ b/src/main/java/se/kth/transitive_changes/Main.java @@ -11,29 +11,7 @@ public class Main { public static void main(String[] args) { - - ApiMetadata apiMetadata = new ApiMetadata(Path.of("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/0a11c04038eae517540051dbf51f7f26b7221f20/snakeyaml-1.24.jar")); - ApiMetadata apiMetadata2 = new ApiMetadata(Path.of("/Users/frank/Documents/Work/PHD/Explaining/breaking-good/projects/0a11c04038eae517540051dbf51f7f26b7221f20/snakeyaml-2.0.jar")); - - Set v1 = MavenTree.read(apiMetadata); - Set v2 = MavenTree.read(apiMetadata2); - - Set transitiveDependencies = MavenTree.diff(v1, v2); - - for (PairTransitiveDependency pair : transitiveDependencies) { - try { - System.out.println("Comparing " + pair.newVersion() + " and " + pair.oldVersion()); - CompareTransitiveDependency compareTransitiveDependency = new CompareTransitiveDependency(pair.newVersion(), pair.oldVersion()); - compareTransitiveDependency.compareDependency(); - System.out.println("Breaking changes for " + pair.newVersion() + " and " + pair.oldVersion()); - System.out.println("Breaking Changes amount: " + compareTransitiveDependency.getBreakingChanges().size()); - - JsonUtils.writeToFile(Path.of("breaking-changes-%s.json".formatted(pair.oldVersion().getArtifactId())),compareTransitiveDependency); - - } catch (Exception e) { - e.printStackTrace(); - } - } + System.out.println("Hello World"); } From fed5ad97a2538f34158a37653bc4a5b2edd105cf Mon Sep 17 00:00:00 2001 From: Frank Reyes Date: Mon, 24 Jun 2024 13:36:51 +0200 Subject: [PATCH 2/3] Updating project --- ...1609f962f32cc2ba04fa574c79429e86b372c6b.md | 4 +- ...2eedffd33cc1fe94b59372a1c1bfd91b2fc2ced.md | 4 +- ...7ff1a34661db6c7f0ca03156ff5d8936b5123f5.md | 52 +-- ...8e33c7bbc45ceac64564dadb9abbae0ed481ca5.md | 76 +--- ...c60d0b08c999769313bfe2335fa792efcfb0300.md | 66 +--- ...cdcc1f1319311f383676a89808c9b8eb190145c.md | 10 +- ...ddd0efa29634a4783358cba727d0851236aa579.md | 106 +----- ...ed34fa61c9e31bd4ebb7e4bf12ce792aec96091.md | 28 +- ...1be71ab8713fe987785e9e25e4f3e410e709ab9.md | 2 +- ...1c09e31119c28ea91a9777b2ce8893bca483493.md | 28 +- ...506282e31f5b78fb4395a27f9ad901ef3d98c70.md | 112 ++---- ...629113f03956a230738c47397c33f8ba2d11341.md | 10 +- ...7778ff224c38fe03999cac8caa1814b68fd0ef2.md | 22 +- ...e1de78344a89be66d2e78f7adb07a479f6677eb.md | 10 +- ...b3054325e9e55e1af6056b604048fc328dbb2dd.md | 4 +- ...c04b9834112eba86fbb8ad1f925128d49449c41.md | 36 +- ...15060cd2c7a3812a4adf614b042de84e9c39da4.md | 4 +- ...b4a91979f0d93ca4cbb79e6cfa5029a6b8eaf01.md | 20 +- ...d0cc7db9d9c9420fa4f478a72067ef846ba8129.md | 84 +---- ...d2b38ee1c838d885db80326b3cd60e314704e39.md | 36 +- ...04e4edc99c0ef601ad3a343f168194815db4151.md | 66 +--- ...259baebb426fefbe9dbee26725d6803170dcb85.md | 86 +---- ...33fbc0ee1192ca4aa69f337fd3b530ec94906e9.md | 10 +- ...4e6ae1bd9fea04c5c6edeee53c673e7c0310dff.md | 24 +- ...607926d691c986e2e172f636db7c527945c5b45.md | 74 +--- ...861e40d7047a73bdbae1a4856a2b5ee4a79071a.md | 74 +--- ...b9fdf1135b704e050cf785d6ea353d24f4c64bb.md | 66 +--- ...320d2638b01419a8bac95e0ee939523831a720a.md | 22 +- ...8d2448fa2d6ec02f428b85eaeef0855508e72b9.md | 78 +---- ...9849004763ffd66d14047d51908192ba0551a73.md | 26 +- ...b90c67ef2d2ebb296534ea2ce8d8955cf6854c7.md | 10 +- ...f09581fe834abe1430c0bb894d095071bd1d581.md | 24 +- ...26631e833256a62137c1e5c35c5c5821ca700d5.md | 82 +---- ...7cb9570f6b1d90e2653ab5efd137af3edebc9b5.md | 74 +--- ...e9e6cdda5c5637ce66ba16b8ccfcd5ffce8141d.md | 36 +- ...0e13f6bdb7de7f8eda9f174a5616284f2157ea7.md | 70 +--- ...9759978f25c94d97f340c80ef0e77c3ee6f8cfc.md | 4 +- ...cda77e3b9981dba271f866ec727ad9c6af9c709.md | 104 +----- ...d1985cccacafa64e9eaa7fd5fe5c7154e994456.md | 26 +- ...8676d24472254d05976a62e72e1c3799525a616.md | 20 +- ...881523e12a0890f72ac9fef69821cefba0c7a09.md | 26 +- ...e1f0f08eef839903067c7c11432117c4897d0cd.md | 88 +---- ...f757321e48d7ffb117cbc8fb13d316e23d0f58f.md | 106 ++---- ...0cca141fc95d0510f92e23032c9d03813b074d8.md | 4 +- ...79780b29cf329579fa703552f9090b23c10e81d.md | 72 +--- ...d51a768dc633ed4895a474f78eaaf84a3c209fd.md | 68 +--- ...da8825fbdb24922b94be9eb82eefc73640d8f6b.md | 326 ++++-------------- ...dbbd30590fa87f3e719615e0816c231106e01de.md | 106 +----- ...1ff30e0bc6a9b48e024a8ab27cefda3ad85b530.md | 82 +---- ...698299490d70ce07b7af6e29ebf4627d412f4dd.md | 28 +- ...a14451c6f218af9c08e846345d83259eb7d46a8.md | 10 +- ...b70529b2edf0a0b3f672278e191dc207d1b8711.md | 10 +- ...be29340c60b0bfe93b13b638838163cf355eb03.md | 110 ++---- ...e17c8e47b93596cffeb2ec9241465cf39c7f8eb.md | 68 +--- ...19ea99f63b85bbe2bcbdb67bd57459a79f4e677.md | 80 +---- ...2b18584e757c44b1468383252d6a9761f8097de.md | 28 +- ...92fdfdaeea759fb558907ef8f7e3d46c170f886.md | 4 +- ...ad55510363bde900a60f13ecc744e0c244397d4.md | 24 +- ...cafa6f39116555a4c53882ed2cf2835594d9114.md | 78 +---- ...dbb81614557858922836294d1d6dd3dd661f10c.md | 26 +- ...1fc16b4fe9dfdfa16ce7248fccad0e7d994094d.md | 10 +- ...4950c79dfe902dae8991ff722216c7ba787bf32.md | 74 +--- ...5905f7220e1129a0448715ee5d0e61ee5ac31e1.md | 28 +- ...83979c19ca572bfef0fa96d73772fdbeeddd109.md | 22 +- ...8da6c3c823d745bb37b072a4a33b6342a86dcd9.md | 74 +--- ...675fa18d22f8ad374f8d6cb7e0dfd9b1f18cc58.md | 70 +--- ...7cc1744503dcd393468db7cbc47cec0cea2a2f0.md | 4 +- ...f8452d0d7878f371c8775814e7a60cf6cecbfbb.md | 26 +- ...14a9e4a300747a582012aec4d40a6a69f5fd4f4.md | 68 +--- ...14e4c4fa02468ad27d303785c26539a6b3b8eab.md | 78 +---- ...47fd8edc5227b6852ebd2466dd89049c9907b80.md | 10 +- ...b82573b99b6d9688e557d3490fa5d3e9512c99b.md | 74 +--- ...5a34301592bb62474489de79069d7873ffe070e.md | 82 +---- ...5dbb3021aa96afc60b38d2b0b01873d3a6f16bd.md | 74 +--- ...b71d68c62a6b9263ebc5113d97c91535d3106b2.md | 4 +- ...e31c5e11259881e9dce66d325d1b8b8ed8afc81.md | 108 ++---- ...e57fca108ccd8ea9b98666075fbc3237874c314.md | 70 +--- ...e8646eae5d5f81a733be6cbf8f3a308c604e8ec.md | 104 +----- 78 files changed, 736 insertions(+), 3278 deletions(-) diff --git a/Explanations/01609f962f32cc2ba04fa574c79429e86b372c6b.md b/Explanations/01609f962f32cc2ba04fa574c79429e86b372c6b.md index b56b179..97e9e76 100644 --- a/Explanations/01609f962f32cc2ba04fa574c79429e86b372c6b.md +++ b/Explanations/01609f962f32cc2ba04fa574c79429e86b372c6b.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.7** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.7** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,8 +11,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/02eedffd33cc1fe94b59372a1c1bfd91b2fc2ced.md b/Explanations/02eedffd33cc1fe94b59372a1c1bfd91b2fc2ced.md index 9bd1c6e..90c9d13 100644 --- a/Explanations/02eedffd33cc1fe94b59372a1c1bfd91b2fc2ced.md +++ b/Explanations/02eedffd33cc1fe94b59372a1c1bfd91b2fc2ced.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.8** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.8** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,6 +13,4 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - diff --git a/Explanations/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md b/Explanations/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md index 5dac445..683de04 100644 --- a/Explanations/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md +++ b/Explanations/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md @@ -1,45 +1,51 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.1** to **spring-context-5.3.23** has failed. +<<<<<<<< HEAD:Resources/JavaVersionIncompatibility/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.1** has failed. +======== +CI detected that the dependency upgrade from version **spring-core-6.0.9** to **spring-core-5.3.27** has failed. +>>>>>>>> main:Resources/JavaVersionIncompatibility/JavaVersionIncompatibility.md The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). To resolve this issue, you need to update the Java version to **Java 17** in the following files: +<<<<<<<< HEAD:Resources/JavaVersionIncompatibility/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md +======== +- `test-suite.yml` +>>>>>>>> main:Resources/JavaVersionIncompatibility/JavaVersionIncompatibility.md - `build.yml` -- `deploy.yml` +- `findbugs.yml`
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match +* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +<<<<<<<< HEAD:Resources/JavaVersionIncompatibility/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +======== +* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +>>>>>>>> main:Resources/JavaVersionIncompatibility/JavaVersionIncompatibility.md -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +<<<<<<<< HEAD:Resources/JavaVersionIncompatibility/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +======== +* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match +* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +>>>>>>>> main:Resources/JavaVersionIncompatibility/JavaVersionIncompatibility.md +* > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. + +<<<<<<<< HEAD:Resources/JavaVersionIncompatibility/07ff1a34661db6c7f0ca03156ff5d8936b5123f5.md * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +======== +* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +>>>>>>>> main:Resources/JavaVersionIncompatibility/JavaVersionIncompatibility.md -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem
diff --git a/Explanations/08e33c7bbc45ceac64564dadb9abbae0ed481ca5.md b/Explanations/08e33c7bbc45ceac64564dadb9abbae0ed481ca5.md index 1df26b2..4177866 100644 --- a/Explanations/08e33c7bbc45ceac64564dadb9abbae0ed481ca5.md +++ b/Explanations/08e33c7bbc45ceac64564dadb9abbae0ed481ca5.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.5** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,19 +13,17 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.5/spring-webmvc-6.0.5.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.5/spring-webmvc-6.0.5.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.5/spring-webmvc-6.0.5.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.5/spring-webmvc-6.0.5.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService @@ -33,82 +31,34 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.5/spring-webmvc-6.0.5.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.5/spring-webmvc-6.0.5.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + diff --git a/Explanations/0c60d0b08c999769313bfe2335fa792efcfb0300.md b/Explanations/0c60d0b08c999769313bfe2335fa792efcfb0300.md index a49aa61..6887917 100644 --- a/Explanations/0c60d0b08c999769313bfe2335fa792efcfb0300.md +++ b/Explanations/0c60d0b08c999769313bfe2335fa792efcfb0300.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.7** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.7** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,9 +13,9 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -25,73 +25,31 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.7/spring-web-6.0.7.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -99,12 +57,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/0cdcc1f1319311f383676a89808c9b8eb190145c.md b/Explanations/0cdcc1f1319311f383676a89808c9b8eb190145c.md index 91626cf..c28faf7 100644 --- a/Explanations/0cdcc1f1319311f383676a89808c9b8eb190145c.md +++ b/Explanations/0cdcc1f1319311f383676a89808c9b8eb190145c.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.3** to **spring-core-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.23** to **spring-core-6.0.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -15,16 +15,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem - diff --git a/Explanations/0ddd0efa29634a4783358cba727d0851236aa579.md b/Explanations/0ddd0efa29634a4783358cba727d0851236aa579.md index 633f51d..9f4520b 100644 --- a/Explanations/0ddd0efa29634a4783358cba727d0851236aa579.md +++ b/Explanations/0ddd0efa29634a4783358cba727d0851236aa579.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-boot-starter-3.0.5** to **spring-boot-starter-2.7.5** has failed. +CI detected that the dependency upgrade from version **spring-boot-starter-2.7.5** to **spring-boot-starter-3.0.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,11 +11,9 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.5/spring-boot-3.0.5.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService @@ -25,113 +23,45 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
[ERROR] symbol: class ConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/validation/annotation/Validated.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
symbol: class Validated - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.5/spring-boot-3.0.5.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
symbol: class Configuration - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
[ERROR] symbol: class Component * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.5/spring-boot-3.0.5.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.5/spring-boot-3.0.5.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
symbol: class ConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
symbol: class EnableConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.7/spring-beans-6.0.7.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -139,12 +69,14 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.5/spring-boot-autoconfigure-3.0.5.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
[ERROR] symbol: class Service
diff --git a/Explanations/0ed34fa61c9e31bd4ebb7e4bf12ce792aec96091.md b/Explanations/0ed34fa61c9e31bd4ebb7e4bf12ce792aec96091.md index d2c2f4a..b0bf79b 100644 --- a/Explanations/0ed34fa61c9e31bd4ebb7e4bf12ce792aec96091.md +++ b/Explanations/0ed34fa61c9e31bd4ebb7e4bf12ce792aec96091.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.9** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.9** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -12,34 +12,18 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.9/spring-context-6.0.9.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.9/spring-context-6.0.9.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.9/spring-context-6.0.9.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.9/spring-context-6.0.9.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.9/spring-context-6.0.9.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext diff --git a/Explanations/11be71ab8713fe987785e9e25e4f3e410e709ab9.md b/Explanations/11be71ab8713fe987785e9e25e4f3e410e709ab9.md index 8de179b..cce1cd6 100644 --- a/Explanations/11be71ab8713fe987785e9e25e4f3e410e709ab9.md +++ b/Explanations/11be71ab8713fe987785e9e25e4f3e410e709ab9.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.2** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). diff --git a/Explanations/11c09e31119c28ea91a9777b2ce8893bca483493.md b/Explanations/11c09e31119c28ea91a9777b2ce8893bca483493.md index e215e79..f408dc1 100644 --- a/Explanations/11c09e31119c28ea91a9777b2ce8893bca483493.md +++ b/Explanations/11c09e31119c28ea91a9777b2ce8893bca483493.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.11** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.11** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -12,34 +12,18 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.11/spring-context-6.0.11.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.11/spring-context-6.0.11.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.11/spring-context-6.0.11.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.11/spring-context-6.0.11.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.11/spring-context-6.0.11.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + diff --git a/Explanations/1506282e31f5b78fb4395a27f9ad901ef3d98c70.md b/Explanations/1506282e31f5b78fb4395a27f9ad901ef3d98c70.md index a3c4ec3..a610f03 100644 --- a/Explanations/1506282e31f5b78fb4395a27f9ad901ef3d98c70.md +++ b/Explanations/1506282e31f5b78fb4395a27f9ad901ef3d98c70.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-boot-starter-3.0.2** to **spring-boot-starter-2.7.5** has failed. +CI detected that the dependency upgrade from version **spring-boot-starter-2.7.5** to **spring-boot-starter-3.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,135 +11,67 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
[ERROR] symbol: class ConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
symbol: class Validated - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.2/spring-boot-3.0.2.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.2/spring-boot-3.0.2.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.2/spring-boot-3.0.2.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
symbol: class Configuration - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.2/spring-boot-3.0.2.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
[ERROR] symbol: class ConfigurationProperties * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
[ERROR] symbol: class Component * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/validation/annotation/Validated.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.2/spring-boot-3.0.2.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
symbol: class ConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.2/spring-boot-autoconfigure-3.0.2.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
symbol: class EnableConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.2/spring-boot-3.0.2.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService diff --git a/Explanations/1629113f03956a230738c47397c33f8ba2d11341.md b/Explanations/1629113f03956a230738c47397c33f8ba2d11341.md index 42f8e50..9dfdcae 100644 --- a/Explanations/1629113f03956a230738c47397c33f8ba2d11341.md +++ b/Explanations/1629113f03956a230738c47397c33f8ba2d11341.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.8** to **spring-core-5.3.27** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.27** to **spring-core-6.0.8** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -17,14 +17,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 62.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. -
diff --git a/Explanations/17778ff224c38fe03999cac8caa1814b68fd0ef2.md b/Explanations/17778ff224c38fe03999cac8caa1814b68fd0ef2.md index 91f01e5..91d7fbf 100644 --- a/Explanations/17778ff224c38fe03999cac8caa1814b68fd0ef2.md +++ b/Explanations/17778ff224c38fe03999cac8caa1814b68fd0ef2.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.7** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.7** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -14,32 +14,16 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext diff --git a/Explanations/1e1de78344a89be66d2e78f7adb07a479f6677eb.md b/Explanations/1e1de78344a89be66d2e78f7adb07a479f6677eb.md index eaabfca..671dab9 100644 --- a/Explanations/1e1de78344a89be66d2e78f7adb07a479f6677eb.md +++ b/Explanations/1e1de78344a89be66d2e78f7adb07a479f6677eb.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.4** to **spring-core-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.23** to **spring-core-6.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,18 +13,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem - diff --git a/Explanations/2b3054325e9e55e1af6056b604048fc328dbb2dd.md b/Explanations/2b3054325e9e55e1af6056b604048fc328dbb2dd.md index 858c759..428651f 100644 --- a/Explanations/2b3054325e9e55e1af6056b604048fc328dbb2dd.md +++ b/Explanations/2b3054325e9e55e1af6056b604048fc328dbb2dd.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.0** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,6 +13,4 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.0/spring-core-6.0.0.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.0/spring-core-6.0.0.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - diff --git a/Explanations/2c04b9834112eba86fbb8ad1f925128d49449c41.md b/Explanations/2c04b9834112eba86fbb8ad1f925128d49449c41.md index 89dffdf..1993c97 100644 --- a/Explanations/2c04b9834112eba86fbb8ad1f925128d49449c41.md +++ b/Explanations/2c04b9834112eba86fbb8ad1f925128d49449c41.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-cloud-stream-4.0.1** to **spring-cloud-stream-3.0.7.RELEASE** has failed. +CI detected that the dependency upgrade from version **spring-cloud-stream-3.0.7.RELEASE** to **spring-cloud-stream-4.0.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,48 +9,26 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[27,21] cannot find symbol
symbol: class BindingServiceConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[13,47] cannot access org.springframework.cloud.stream.config.BindingServiceConfiguration
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.1/spring-cloud-stream-4.0.1.jar(/org/springframework/cloud/stream/config/BindingServiceConfiguration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[11,51] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[12,47] cannot access org.springframework.cloud.stream.config.BindingProperties
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.1/spring-cloud-stream-4.0.1.jar(/org/springframework/cloud/stream/config/BindingProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
[ERROR] symbol: class EnableBinding - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[40,19] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration - * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[13,47] cannot access org.springframework.cloud.stream.config.BindingServiceConfiguration
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.1/spring-cloud-stream-4.0.1.jar(/org/springframework/cloud/stream/config/BindingServiceConfiguration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
[ERROR] symbol: class EnableBinding
[ERROR] location: package org.springframework.cloud.stream.annotation -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
symbol: class EnableBinding
location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
symbol: class EnableBinding - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
symbol: class Output
location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
symbol: class BindingServiceConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[11,51] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: package org.springframework.cloud.stream.annotation * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[12,47] cannot access org.springframework.cloud.stream.config.BindingProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.1/spring-cloud-stream-4.0.1.jar(/org/springframework/cloud/stream/config/BindingProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[42,38] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[11,51] cannot find symbol
symbol: class Output
location: package org.springframework.cloud.stream.annotation - * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[14,47] cannot access org.springframework.cloud.stream.config.BindingServiceProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.1/spring-cloud-stream-4.0.1.jar(/org/springframework/cloud/stream/config/BindingServiceProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[14,47] cannot access org.springframework.cloud.stream.config.BindingServiceProperties
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.1/spring-cloud-stream-4.0.1.jar(/org/springframework/cloud/stream/config/BindingServiceProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
[ERROR] symbol: class EnableBinding -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[40,19] cannot find symbol
symbol: class BindingServiceProperties
location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[40,19] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[42,38] cannot find symbol
symbol: class BindingServiceProperties
location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[27,21] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration +
diff --git a/Explanations/315060cd2c7a3812a4adf614b042de84e9c39da4.md b/Explanations/315060cd2c7a3812a4adf614b042de84e9c39da4.md index 90fa7eb..478e9f9 100644 --- a/Explanations/315060cd2c7a3812a4adf614b042de84e9c39da4.md +++ b/Explanations/315060cd2c7a3812a4adf614b042de84e9c39da4.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.5** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,6 +13,4 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - diff --git a/Explanations/3b4a91979f0d93ca4cbb79e6cfa5029a6b8eaf01.md b/Explanations/3b4a91979f0d93ca4cbb79e6cfa5029a6b8eaf01.md index 1e1388f..19b5da2 100644 --- a/Explanations/3b4a91979f0d93ca4cbb79e6cfa5029a6b8eaf01.md +++ b/Explanations/3b4a91979f0d93ca4cbb79e6cfa5029a6b8eaf01.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **opennlp-tools-2.3.0** to **opennlp-tools-2.2.0** has failed. +CI detected that the dependency upgrade from version **opennlp-tools-2.2.0** to **opennlp-tools-2.3.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,32 +11,18 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/RulePresentSimpleMl.java:[36,28] cannot access opennlp.tools.postag.POSTaggerME
bad class file: /root/.m2/repository/org/apache/opennlp/opennlp-tools/2.3.0/opennlp-tools-2.3.0.jar(/opennlp/tools/postag/POSTaggerME.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/RulePresentSimpleMl.java:[53,19] cannot find symbol
[ERROR] symbol: class POSTaggerME
[ERROR] location: class com.github.lombrozo.testnames.rules.ml.RulePresentSimpleMl * > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSourceInternet.java:[60,12] cannot find symbol
[ERROR] symbol: class POSModel
[ERROR] location: class com.github.lombrozo.testnames.rules.ml.ModelSourceInternet -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/RulePresentSimpleMl.java:[36,28] cannot access opennlp.tools.postag.POSTaggerME
[ERROR] bad class file: /root/.m2/repository/org/apache/opennlp/opennlp-tools/2.3.0/opennlp-tools-2.3.0.jar(/opennlp/tools/postag/POSTaggerME.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSourceFileSystem.java:[52,12] cannot find symbol
[ERROR] symbol: class POSModel
[ERROR] location: class com.github.lombrozo.testnames.rules.ml.ModelSourceFileSystem - -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSourceFileSystem.java:[28,28] cannot access opennlp.tools.postag.POSModel
bad class file: /root/.m2/repository/org/apache/opennlp/opennlp-tools/2.3.0/opennlp-tools-2.3.0.jar(/opennlp/tools/postag/POSModel.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSourceInternet.java:[60,12] cannot find symbol
symbol: class POSModel
location: class com.github.lombrozo.testnames.rules.ml.ModelSourceInternet - * > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSourceFileSystem.java:[28,28] cannot access opennlp.tools.postag.POSModel
[ERROR] bad class file: /root/.m2/repository/org/apache/opennlp/opennlp-tools/2.3.0/opennlp-tools-2.3.0.jar(/opennlp/tools/postag/POSModel.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/RulePresentSimpleMl.java:[65,31] cannot find symbol
[ERROR] symbol: class POSTaggerME
[ERROR] location: class com.github.lombrozo.testnames.rules.ml.RulePresentSimpleMl -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSource.java:[41,5] cannot find symbol
symbol: class POSModel
location: interface com.github.lombrozo.testnames.rules.ml.ModelSource - -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/RulePresentSimpleMl.java:[65,31] cannot find symbol
symbol: class POSTaggerME
location: class com.github.lombrozo.testnames.rules.ml.RulePresentSimpleMl +* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/RulePresentSimpleMl.java:[36,28] cannot access opennlp.tools.postag.POSTaggerME
[ERROR] bad class file: /root/.m2/repository/org/apache/opennlp/opennlp-tools/2.3.0/opennlp-tools-2.3.0.jar(/opennlp/tools/postag/POSTaggerME.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSource.java:[41,5] cannot find symbol
[ERROR] symbol: class POSModel
[ERROR] location: interface com.github.lombrozo.testnames.rules.ml.ModelSource -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/RulePresentSimpleMl.java:[53,19] cannot find symbol
symbol: class POSTaggerME
location: class com.github.lombrozo.testnames.rules.ml.RulePresentSimpleMl - -* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSourceFileSystem.java:[52,12] cannot find symbol
symbol: class POSModel
location: class com.github.lombrozo.testnames.rules.ml.ModelSourceFileSystem +* > [ERROR] /jtcop/src/main/java/com/github/lombrozo/testnames/rules/ml/ModelSourceFileSystem.java:[52,12] cannot find symbol
[ERROR] symbol: class POSModel
[ERROR] location: class com.github.lombrozo.testnames.rules.ml.ModelSourceFileSystem
diff --git a/Explanations/3d0cc7db9d9c9420fa4f478a72067ef846ba8129.md b/Explanations/3d0cc7db9d9c9420fa4f478a72067ef846ba8129.md index 0734f32..ebc4ff1 100644 --- a/Explanations/3d0cc7db9d9c9420fa4f478a72067ef846ba8129.md +++ b/Explanations/3d0cc7db9d9c9420fa4f478a72067ef846ba8129.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **jooq-meta-3.17.5** to **jooq-meta-3.16.6** has failed. +CI detected that the dependency upgrade from version **jooq-meta-3.16.6** to **jooq-meta-3.17.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,118 +10,64 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
symbol: class PostgresDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/tools/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
symbol: class JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
symbol: method getBasedir()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/SQLDialect.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/impl/DSL.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.5/jooq-meta-3.17.5.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/tools/JooqLogger.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
symbol: variable JDBCUtils
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
symbol: variable JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
symbol: class DSLContext
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
symbol: variable DSL
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/tools/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
symbol: method setConnection(java.sql.Connection)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
[ERROR] symbol: class JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/impl/DSL.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/DSLContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[118,5] method does not override or implement a method from a supertype * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
[ERROR] symbol: method getBasedir()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/exception/DataAccessException.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/tools/JooqLogger.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/impl/DSL.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.5/jooq-meta-3.17.5.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.5/jooq-meta-3.17.5.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
symbol: class DataAccessException
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
[ERROR] symbol: class DSLContext
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
symbol: variable SQLDialect
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
[ERROR] symbol: variable JDBCUtils
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
[ERROR] symbol: variable super
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
[ERROR] symbol: class DataAccessException
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
symbol: variable super
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.5/jooq-3.17.5.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/3d2b38ee1c838d885db80326b3cd60e314704e39.md b/Explanations/3d2b38ee1c838d885db80326b3cd60e314704e39.md index 382768e..6820396 100644 --- a/Explanations/3d2b38ee1c838d885db80326b3cd60e314704e39.md +++ b/Explanations/3d2b38ee1c838d885db80326b3cd60e314704e39.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-cloud-stream-4.0.0** to **spring-cloud-stream-3.0.7.RELEASE** has failed. +CI detected that the dependency upgrade from version **spring-cloud-stream-3.0.7.RELEASE** to **spring-cloud-stream-4.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,12 +9,14 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[27,21] cannot find symbol
symbol: class BindingServiceConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
[ERROR] symbol: class EnableBinding
[ERROR] location: package org.springframework.cloud.stream.annotation -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[12,47] cannot access org.springframework.cloud.stream.config.BindingProperties
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.0/spring-cloud-stream-4.0.0.jar(/org/springframework/cloud/stream/config/BindingProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[13,47] cannot access org.springframework.cloud.stream.config.BindingServiceConfiguration
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.0/spring-cloud-stream-4.0.0.jar(/org/springframework/cloud/stream/config/BindingServiceConfiguration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[11,51] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: package org.springframework.cloud.stream.annotation +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[42,38] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration + * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[12,47] cannot access org.springframework.cloud.stream.config.BindingProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.0/spring-cloud-stream-4.0.0.jar(/org/springframework/cloud/stream/config/BindingProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
[ERROR] symbol: class EnableBinding @@ -23,34 +25,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
[ERROR] symbol: class EnableBinding
[ERROR] location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
symbol: class EnableBinding
location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
symbol: class EnableBinding - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
symbol: class Output
location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
symbol: class BindingServiceConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[13,47] cannot access org.springframework.cloud.stream.config.BindingServiceConfiguration
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.0/spring-cloud-stream-4.0.0.jar(/org/springframework/cloud/stream/config/BindingServiceConfiguration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[42,38] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[13,47] cannot access org.springframework.cloud.stream.config.BindingServiceConfiguration
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.0/spring-cloud-stream-4.0.0.jar(/org/springframework/cloud/stream/config/BindingServiceConfiguration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[11,51] cannot find symbol
symbol: class Output
location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[14,47] cannot access org.springframework.cloud.stream.config.BindingServiceProperties
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.0/spring-cloud-stream-4.0.0.jar(/org/springframework/cloud/stream/config/BindingServiceProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[40,19] cannot find symbol
symbol: class BindingServiceProperties
location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[42,38] cannot find symbol
symbol: class BindingServiceProperties
location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration - * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[14,47] cannot access org.springframework.cloud.stream.config.BindingServiceProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.0/spring-cloud-stream-4.0.0.jar(/org/springframework/cloud/stream/config/BindingServiceProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[27,21] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration +
diff --git a/Explanations/404e4edc99c0ef601ad3a343f168194815db4151.md b/Explanations/404e4edc99c0ef601ad3a343f168194815db4151.md index bf0b7ea..899b77a 100644 --- a/Explanations/404e4edc99c0ef601ad3a343f168194815db4151.md +++ b/Explanations/404e4edc99c0ef601ad3a343f168194815db4151.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.8** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.8** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,98 +13,50 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.8/spring-web-6.0.8.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - diff --git a/Explanations/4259baebb426fefbe9dbee26725d6803170dcb85.md b/Explanations/4259baebb426fefbe9dbee26725d6803170dcb85.md index 99ebcf1..41eec7b 100644 --- a/Explanations/4259baebb426fefbe9dbee26725d6803170dcb85.md +++ b/Explanations/4259baebb426fefbe9dbee26725d6803170dcb85.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.0** to **spring-web-4.1.6.RELEASE** has failed. +CI detected that the dependency upgrade from version **spring-web-4.1.6.RELEASE** to **spring-web-6.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,116 +9,60 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[89,18] cannot find symbol
symbol: class ModelAttribute
location: class edu.ksu.lti.launch.controller.OauthController +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[42,6] cannot find symbol
[ERROR] symbol: class Order
[ERROR] location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[11,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[9,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/service/LtiSessionService.java:[6,47] cannot access org.springframework.web.context.request.RequestContextHolder
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/context/request/RequestContextHolder.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[89,18] cannot find symbol
[ERROR] symbol: class ModelAttribute
[ERROR] location: class edu.ksu.lti.launch.controller.OauthController +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[30,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.oauth.LtiLaunch + * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[28,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.controller.LtiLaunchController * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[34,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.oauth.LtiLaunch * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[32,30] cannot find symbol
[ERROR] symbol: class ModelAttribute
[ERROR] location: class edu.ksu.lti.launch.controller.LtiLaunchController -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[18,47] cannot access org.springframework.web.bind.annotation.RequestMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[31,49] cannot find symbol
[ERROR] symbol: variable RequestMethod
[ERROR] location: class edu.ksu.lti.launch.controller.LtiLaunchController -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[31,6] cannot find symbol
symbol: class RequestMapping
location: class edu.ksu.lti.launch.controller.LtiLaunchController +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[18,47] cannot access org.springframework.web.bind.annotation.RequestMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[90,18] cannot find symbol
symbol: class ModelAttribute
location: class edu.ksu.lti.launch.controller.OauthController +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[9,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[44,10] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[46,10] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter - * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[44,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.controller.OauthController * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/service/LtiSessionService.java:[7,47] cannot access org.springframework.web.context.request.ServletRequestAttributes
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/context/request/ServletRequestAttributes.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[46,10] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[51,10] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter + * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[31,6] cannot find symbol
[ERROR] symbol: class RequestMapping
[ERROR] location: class edu.ksu.lti.launch.controller.LtiLaunchController +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/security/CanvasInstanceChecker.java:[25,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.security.CanvasInstanceChecker + +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[17,47] cannot access org.springframework.web.bind.annotation.ModelAttribute
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/ModelAttribute.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[88,18] cannot find symbol
[ERROR] symbol: class ModelAttribute
[ERROR] location: class edu.ksu.lti.launch.controller.OauthController * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[32,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.oauth.LtiLaunch * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[85,6] cannot find symbol
[ERROR] symbol: class RequestMapping
[ERROR] location: class edu.ksu.lti.launch.controller.OauthController -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[42,6] cannot find symbol
symbol: class Order
location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig +* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[36,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.oauth.LtiLaunch * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[51,6] cannot find symbol
[ERROR] symbol: class RequestMapping
[ERROR] location: class edu.ksu.lti.launch.controller.OauthController * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[12,43] cannot access org.springframework.core.annotation.Order
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.0/spring-core-6.0.0.jar(/org/springframework/core/annotation/Order.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[28,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.controller.LtiLaunchController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[17,47] cannot access org.springframework.web.bind.annotation.ModelAttribute
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/ModelAttribute.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/service/LtiSessionService.java:[6,47] cannot access org.springframework.web.context.request.RequestContextHolder
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/context/request/RequestContextHolder.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[88,18] cannot find symbol
symbol: class ModelAttribute
location: class edu.ksu.lti.launch.controller.OauthController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[31,49] cannot find symbol
symbol: variable RequestMethod
location: class edu.ksu.lti.launch.controller.LtiLaunchController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[42,6] cannot find symbol
[ERROR] symbol: class Order
[ERROR] location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/service/LtiSessionService.java:[6,47] cannot access org.springframework.web.context.request.RequestContextHolder
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/context/request/RequestContextHolder.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiConsumerDetailsService.java:[28,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.oauth.LtiConsumerDetailsService - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[51,6] cannot find symbol
symbol: class RequestMapping
location: class edu.ksu.lti.launch.controller.OauthController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[30,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.oauth.LtiLaunch - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[18,47] cannot access org.springframework.web.bind.annotation.RequestMapping
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[32,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.oauth.LtiLaunch - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[31,49] cannot find symbol
[ERROR] symbol: variable RequestMethod
[ERROR] location: class edu.ksu.lti.launch.controller.LtiLaunchController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[9,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[32,30] cannot find symbol
symbol: class ModelAttribute
location: class edu.ksu.lti.launch.controller.LtiLaunchController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[30,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.oauth.LtiLaunch - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/security/CanvasInstanceChecker.java:[25,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.security.CanvasInstanceChecker - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[51,10] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/security/CanvasInstanceChecker.java:[25,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.security.CanvasInstanceChecker - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[85,6] cannot find symbol
symbol: class RequestMapping
location: class edu.ksu.lti.launch.controller.OauthController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[17,47] cannot access org.springframework.web.bind.annotation.ModelAttribute
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/ModelAttribute.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[44,10] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[12,43] cannot access org.springframework.core.annotation.Order
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.0/spring-core-6.0.0.jar(/org/springframework/core/annotation/Order.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[36,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.oauth.LtiLaunch - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[51,10] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[36,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.oauth.LtiLaunch - * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[48,10] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[90,18] cannot find symbol
[ERROR] symbol: class ModelAttribute
[ERROR] location: class edu.ksu.lti.launch.controller.OauthController -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/OauthController.java:[44,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.controller.OauthController - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/controller/LtiLaunchController.java:[11,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiLaunch.java:[34,6] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.oauth.LtiLaunch - * > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/oauth/LtiConsumerDetailsService.java:[28,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class edu.ksu.lti.launch.oauth.LtiConsumerDetailsService -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/service/LtiSessionService.java:[7,47] cannot access org.springframework.web.context.request.ServletRequestAttributes
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/context/request/ServletRequestAttributes.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /lti-launch/src/main/java/edu/ksu/lti/launch/spring/config/LtiLaunchSecurityConfig.java:[48,10] cannot find symbol
symbol: class Autowired
location: class edu.ksu.lti.launch.spring.config.LtiLaunchSecurityConfig.LTISecurityConfigurerAdapter -
diff --git a/Explanations/433fbc0ee1192ca4aa69f337fd3b530ec94906e9.md b/Explanations/433fbc0ee1192ca4aa69f337fd3b530ec94906e9.md index 7278c7b..45dd395 100644 --- a/Explanations/433fbc0ee1192ca4aa69f337fd3b530ec94906e9.md +++ b/Explanations/433fbc0ee1192ca4aa69f337fd3b530ec94906e9.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.9** to **spring-core-5.3.27** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.27** to **spring-core-6.0.9** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,18 +13,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem * > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.9/spring-core-6.0.9.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem - diff --git a/Explanations/44e6ae1bd9fea04c5c6edeee53c673e7c0310dff.md b/Explanations/44e6ae1bd9fea04c5c6edeee53c673e7c0310dff.md index c4d35dc..dd5176e 100644 --- a/Explanations/44e6ae1bd9fea04c5c6edeee53c673e7c0310dff.md +++ b/Explanations/44e6ae1bd9fea04c5c6edeee53c673e7c0310dff.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.4** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,35 +10,23 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist + * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/io/Resource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/format/annotation/DateTimeFormat.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model diff --git a/Explanations/4607926d691c986e2e172f636db7c527945c5b45.md b/Explanations/4607926d691c986e2e172f636db7c527945c5b45.md index 700854c..ad5b188 100644 --- a/Explanations/4607926d691c986e2e172f636db7c527945c5b45.md +++ b/Explanations/4607926d691c986e2e172f636db7c527945c5b45.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.4** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,97 +13,49 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.4/spring-web-6.0.4.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.4/spring-beans-6.0.4.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/4861e40d7047a73bdbae1a4856a2b5ee4a79071a.md b/Explanations/4861e40d7047a73bdbae1a4856a2b5ee4a79071a.md index 12b69bf..c9d5563 100644 --- a/Explanations/4861e40d7047a73bdbae1a4856a2b5ee4a79071a.md +++ b/Explanations/4861e40d7047a73bdbae1a4856a2b5ee4a79071a.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.0** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,9 +13,9 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController @@ -23,88 +23,40 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService + +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +
diff --git a/Explanations/4b9fdf1135b704e050cf785d6ea353d24f4c64bb.md b/Explanations/4b9fdf1135b704e050cf785d6ea353d24f4c64bb.md index a7a212c..938f6a9 100644 --- a/Explanations/4b9fdf1135b704e050cf785d6ea353d24f4c64bb.md +++ b/Explanations/4b9fdf1135b704e050cf785d6ea353d24f4c64bb.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.1** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -15,9 +15,11 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController @@ -27,84 +29,34 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.1/spring-beans-6.0.1.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.1/spring-beans-6.0.1.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.1/spring-beans-6.0.1.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.1/spring-beans-6.0.1.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.1/spring-web-6.0.1.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/5320d2638b01419a8bac95e0ee939523831a720a.md b/Explanations/5320d2638b01419a8bac95e0ee939523831a720a.md index f6202fc..552a604 100644 --- a/Explanations/5320d2638b01419a8bac95e0ee939523831a720a.md +++ b/Explanations/5320d2638b01419a8bac95e0ee939523831a720a.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.4** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -14,22 +14,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext @@ -38,8 +22,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext diff --git a/Explanations/58d2448fa2d6ec02f428b85eaeef0855508e72b9.md b/Explanations/58d2448fa2d6ec02f428b85eaeef0855508e72b9.md index 74a8aae..97f2e33 100644 --- a/Explanations/58d2448fa2d6ec02f428b85eaeef0855508e72b9.md +++ b/Explanations/58d2448fa2d6ec02f428b85eaeef0855508e72b9.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.0** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,17 +13,7 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.0/spring-webmvc-6.0.0.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService @@ -31,15 +21,13 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service @@ -47,61 +35,19 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.0/spring-webmvc-6.0.0.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.0/spring-webmvc-6.0.0.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.0/spring-webmvc-6.0.0.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -111,4 +57,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + diff --git a/Explanations/59849004763ffd66d14047d51908192ba0551a73.md b/Explanations/59849004763ffd66d14047d51908192ba0551a73.md index c853b67..d8b6a53 100644 --- a/Explanations/59849004763ffd66d14047d51908192ba0551a73.md +++ b/Explanations/59849004763ffd66d14047d51908192ba0551a73.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.0** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,35 +10,23 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model + * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.0/spring-core-6.0.0.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/format/annotation/DateTimeFormat.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.0/spring-core-6.0.0.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.0/spring-core-6.0.0.jar(/org/springframework/core/io/Resource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model diff --git a/Explanations/5b90c67ef2d2ebb296534ea2ce8d8955cf6854c7.md b/Explanations/5b90c67ef2d2ebb296534ea2ce8d8955cf6854c7.md index 3be5d2d..c00ad4a 100644 --- a/Explanations/5b90c67ef2d2ebb296534ea2ce8d8955cf6854c7.md +++ b/Explanations/5b90c67ef2d2ebb296534ea2ce8d8955cf6854c7.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.10** to **spring-core-5.3.27** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.27** to **spring-core-6.0.10** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -15,16 +15,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.10/spring-core-6.0.10.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.10/spring-core-6.0.10.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.10/spring-core-6.0.10.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.10/spring-core-6.0.10.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.10/spring-core-6.0.10.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. -
diff --git a/Explanations/5f09581fe834abe1430c0bb894d095071bd1d581.md b/Explanations/5f09581fe834abe1430c0bb894d095071bd1d581.md index 044ccc8..e0e60cc 100644 --- a/Explanations/5f09581fe834abe1430c0bb894d095071bd1d581.md +++ b/Explanations/5f09581fe834abe1430c0bb894d095071bd1d581.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.5** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -12,24 +12,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext @@ -40,6 +22,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext diff --git a/Explanations/626631e833256a62137c1e5c35c5c5821ca700d5.md b/Explanations/626631e833256a62137c1e5c35c5c5821ca700d5.md index 0b322af..ba07b58 100644 --- a/Explanations/626631e833256a62137c1e5c35c5c5821ca700d5.md +++ b/Explanations/626631e833256a62137c1e5c35c5c5821ca700d5.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **jooq-meta-3.17.4** to **jooq-meta-3.16.6** has failed. +CI detected that the dependency upgrade from version **jooq-meta-3.16.6** to **jooq-meta-3.17.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,87 +10,39 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
symbol: class PostgresDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.4/jooq-meta-3.17.4.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/exception/DataAccessException.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
symbol: class JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
symbol: method getBasedir()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/SQLDialect.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/tools/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/impl/DSL.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/DSLContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
symbol: variable JDBCUtils
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
symbol: variable JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
symbol: class DSLContext
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
symbol: variable DSL
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
symbol: method setConnection(java.sql.Connection)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/tools/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.4/jooq-meta-3.17.4.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/tools/JooqLogger.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
[ERROR] symbol: class JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/impl/DSL.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[118,5] method does not override or implement a method from a supertype +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/impl/DSL.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
[ERROR] symbol: method getBasedir()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase @@ -98,14 +50,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
symbol: class DataAccessException
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/tools/JooqLogger.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
[ERROR] symbol: class DSLContext
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
symbol: variable SQLDialect
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
[ERROR] symbol: variable JDBCUtils
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase @@ -116,12 +66,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
[ERROR] symbol: class DataAccessException
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
symbol: variable super
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.4/jooq-3.17.4.jar(/org/jooq/tools/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/67cb9570f6b1d90e2653ab5efd137af3edebc9b5.md b/Explanations/67cb9570f6b1d90e2653ab5efd137af3edebc9b5.md index bec146b..e86e9ba 100644 --- a/Explanations/67cb9570f6b1d90e2653ab5efd137af3edebc9b5.md +++ b/Explanations/67cb9570f6b1d90e2653ab5efd137af3edebc9b5.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.6** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.6** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,18 +13,18 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.6/spring-webmvc-6.0.6.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -33,76 +33,24 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.6/spring-webmvc-6.0.6.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.6/spring-webmvc-6.0.6.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.6/spring-webmvc-6.0.6.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.6/spring-webmvc-6.0.6.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService @@ -111,4 +59,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + diff --git a/Explanations/6e9e6cdda5c5637ce66ba16b8ccfcd5ffce8141d.md b/Explanations/6e9e6cdda5c5637ce66ba16b8ccfcd5ffce8141d.md index 6568d81..f63b4de 100644 --- a/Explanations/6e9e6cdda5c5637ce66ba16b8ccfcd5ffce8141d.md +++ b/Explanations/6e9e6cdda5c5637ce66ba16b8ccfcd5ffce8141d.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-cloud-stream-4.0.2** to **spring-cloud-stream-3.0.7.RELEASE** has failed. +CI detected that the dependency upgrade from version **spring-cloud-stream-3.0.7.RELEASE** to **spring-cloud-stream-4.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,48 +9,26 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[27,21] cannot find symbol
symbol: class BindingServiceConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
[ERROR] symbol: class EnableBinding
[ERROR] location: package org.springframework.cloud.stream.annotation * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[11,51] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: package org.springframework.cloud.stream.annotation * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[12,47] cannot access org.springframework.cloud.stream.config.BindingProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.2/spring-cloud-stream-4.0.2.jar(/org/springframework/cloud/stream/config/BindingProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[12,47] cannot access org.springframework.cloud.stream.config.BindingProperties
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.2/spring-cloud-stream-4.0.2.jar(/org/springframework/cloud/stream/config/BindingProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
[ERROR] symbol: class EnableBinding - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[40,19] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
[ERROR] symbol: class EnableBinding
[ERROR] location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[10,51] cannot find symbol
symbol: class EnableBinding
location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
symbol: class EnableBinding - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
symbol: class Output
location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
symbol: class BindingServiceConfiguration - * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[13,47] cannot access org.springframework.cloud.stream.config.BindingServiceConfiguration
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.2/spring-cloud-stream-4.0.2.jar(/org/springframework/cloud/stream/config/BindingServiceConfiguration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[42,38] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[11,51] cannot find symbol
symbol: class Output
location: package org.springframework.cloud.stream.annotation - -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[14,47] cannot access org.springframework.cloud.stream.config.BindingServiceProperties
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.2/spring-cloud-stream-4.0.2.jar(/org/springframework/cloud/stream/config/BindingServiceProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[14,47] cannot access org.springframework.cloud.stream.config.BindingServiceProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.2/spring-cloud-stream-4.0.2.jar(/org/springframework/cloud/stream/config/BindingServiceProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[13,47] cannot access org.springframework.cloud.stream.config.BindingServiceConfiguration
bad class file: /root/.m2/repository/org/springframework/cloud/spring-cloud-stream/4.0.2/spring-cloud-stream-4.0.2.jar(/org/springframework/cloud/stream/config/BindingServiceConfiguration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[29,2] cannot find symbol
[ERROR] symbol: class EnableBinding -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[40,19] cannot find symbol
symbol: class BindingServiceProperties
location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[40,19] cannot find symbol
[ERROR] symbol: class BindingServiceProperties
[ERROR] location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration -* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[42,38] cannot find symbol
symbol: class BindingServiceProperties
location: class cn.monitor4all.logRecord.configuration.StreamSenderConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[77,10] cannot find symbol
[ERROR] symbol: class Output
[ERROR] location: interface cn.monitor4all.logRecord.configuration.StreamSenderConfiguration.LogRecordChannel * > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[27,21] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration +* > [ERROR] /log-record/src/main/java/cn/monitor4all/logRecord/configuration/StreamSenderConfiguration.java:[28,23] cannot find symbol
[ERROR] symbol: class BindingServiceConfiguration +
diff --git a/Explanations/70e13f6bdb7de7f8eda9f174a5616284f2157ea7.md b/Explanations/70e13f6bdb7de7f8eda9f174a5616284f2157ea7.md index 55ac630..36ebed3 100644 --- a/Explanations/70e13f6bdb7de7f8eda9f174a5616284f2157ea7.md +++ b/Explanations/70e13f6bdb7de7f8eda9f174a5616284f2157ea7.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.2** to **spring-core-5.3.19** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.19** to **spring-core-6.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,91 +9,51 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,19] cannot find symbol
symbol: class AsyncListenableTaskExecutor
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[23,43] cannot access org.springframework.util.concurrent.ListenableFuture
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/ListenableFuture.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[21,37] cannot access org.springframework.core.task.AsyncListenableTaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/task/AsyncListenableTaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[35,44] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[31,123] cannot find symbol
symbol: class ListenableFuture +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[44,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[29,120] cannot find symbol
[ERROR] symbol: class ListenableFuture +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,19] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper + * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[22,45] cannot access org.springframework.core.task.support.TaskExecutorAdapter
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/task/support/TaskExecutorAdapter.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[24,43] cannot access org.springframework.util.concurrent.SettableListenableFuture
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/SettableListenableFuture.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[72,31] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,62] cannot find symbol
[ERROR] symbol: class TaskExecutorAdapter
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[73,41] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,19] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,68] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,9] cannot find symbol
[ERROR] symbol: class SettableListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,9] cannot find symbol
symbol: class SettableListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[37,41] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[72,31] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,62] cannot find symbol
symbol: class TaskExecutorAdapter
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,19] cannot find symbol
[ERROR] symbol: class AsyncListenableTaskExecutor
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[34,12] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[43,13] method does not override or implement a method from a supertype - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[22,43] cannot access org.springframework.util.concurrent.ListenableFutureCallback
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/ListenableFutureCallback.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[23,43] cannot access org.springframework.util.concurrent.ListenableFuture
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/ListenableFuture.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,68] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[37,41] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[44,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[24,43] cannot access org.springframework.util.concurrent.SettableListenableFuture
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/SettableListenableFuture.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[35,44] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[51,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,19] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[31,123] cannot find symbol
[ERROR] symbol: class ListenableFuture * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[74,13] method does not override or implement a method from a supertype * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[80,13] method does not override or implement a method from a supertype -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[51,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[31,123] cannot find symbol
[ERROR] symbol: class ListenableFuture +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,62] cannot find symbol
[ERROR] symbol: class TaskExecutorAdapter
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[21,37] cannot access org.springframework.core.task.AsyncListenableTaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/task/AsyncListenableTaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[73,41] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,55] cannot find symbol
[ERROR] symbol: class SettableListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[23,43] cannot access org.springframework.util.concurrent.ListenableFuture
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/ListenableFuture.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[29,120] cannot find symbol
symbol: class ListenableFuture +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,68] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[51,12] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,9] cannot find symbol
[ERROR] symbol: class SettableListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[34,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[22,43] cannot access org.springframework.util.concurrent.ListenableFutureCallback
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/ListenableFutureCallback.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[22,45] cannot access org.springframework.core.task.support.TaskExecutorAdapter
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/task/support/TaskExecutorAdapter.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[37,41] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[73,41] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,19] cannot find symbol
[ERROR] symbol: class AsyncListenableTaskExecutor
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,55] cannot find symbol
symbol: class SettableListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[43,13] method does not override or implement a method from a supertype -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[44,12] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[22,43] cannot access org.springframework.util.concurrent.ListenableFutureCallback
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/concurrent/ListenableFutureCallback.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[38,13] method does not override or implement a method from a supertype diff --git a/Explanations/79759978f25c94d97f340c80ef0e77c3ee6f8cfc.md b/Explanations/79759978f25c94d97f340c80ef0e77c3ee6f8cfc.md index c35e1e6..1830191 100644 --- a/Explanations/79759978f25c94d97f340c80ef0e77c3ee6f8cfc.md +++ b/Explanations/79759978f25c94d97f340c80ef0e77c3ee6f8cfc.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.6** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.6** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,6 +13,4 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. -
diff --git a/Explanations/7cda77e3b9981dba271f866ec727ad9c6af9c709.md b/Explanations/7cda77e3b9981dba271f866ec727ad9c6af9c709.md index b530cf9..e7f3349 100644 --- a/Explanations/7cda77e3b9981dba271f866ec727ad9c6af9c709.md +++ b/Explanations/7cda77e3b9981dba271f866ec727ad9c6af9c709.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-boot-starter-3.0.0** to **spring-boot-starter-2.7.5** has failed. +CI detected that the dependency upgrade from version **spring-boot-starter-2.7.5** to **spring-boot-starter-3.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,6 +11,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.0/spring-boot-autoconfigure-3.0.0.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -23,126 +27,54 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
[ERROR] symbol: class ConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/validation/annotation/Validated.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
symbol: class Validated - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.0/spring-boot-3.0.0.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.0/spring-boot-3.0.0.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.0/spring-boot-3.0.0.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
symbol: class Configuration - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.0/spring-boot-autoconfigure-3.0.0.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.0/spring-boot-3.0.0.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
[ERROR] symbol: class Component * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.0/spring-boot-autoconfigure-3.0.0.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
symbol: class ConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.0/spring-boot-autoconfigure-3.0.0.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.0/spring-boot-3.0.0.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
symbol: class EnableConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.0/spring-boot-autoconfigure-3.0.0.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.0/spring-boot-autoconfigure-3.0.0.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.0/spring-boot-autoconfigure-3.0.0.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
[ERROR] symbol: class Service diff --git a/Explanations/7d1985cccacafa64e9eaa7fd5fe5c7154e994456.md b/Explanations/7d1985cccacafa64e9eaa7fd5fe5c7154e994456.md index 399f9fb..9fa1a69 100644 --- a/Explanations/7d1985cccacafa64e9eaa7fd5fe5c7154e994456.md +++ b/Explanations/7d1985cccacafa64e9eaa7fd5fe5c7154e994456.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.8** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.8** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -14,32 +14,16 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +
diff --git a/Explanations/88676d24472254d05976a62e72e1c3799525a616.md b/Explanations/88676d24472254d05976a62e72e1c3799525a616.md index 4cc73bb..32d0658 100644 --- a/Explanations/88676d24472254d05976a62e72e1c3799525a616.md +++ b/Explanations/88676d24472254d05976a62e72e1c3799525a616.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.2** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,34 +10,22 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model + * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/format/annotation/DateTimeFormat.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/io/Resource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model diff --git a/Explanations/8881523e12a0890f72ac9fef69821cefba0c7a09.md b/Explanations/8881523e12a0890f72ac9fef69821cefba0c7a09.md index 6bed797..2c176d3 100644 --- a/Explanations/8881523e12a0890f72ac9fef69821cefba0c7a09.md +++ b/Explanations/8881523e12a0890f72ac9fef69821cefba0c7a09.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.6** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.6** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -12,9 +12,11 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext @@ -22,24 +24,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/8e1f0f08eef839903067c7c11432117c4897d0cd.md b/Explanations/8e1f0f08eef839903067c7c11432117c4897d0cd.md index 05a544d..069b91a 100644 --- a/Explanations/8e1f0f08eef839903067c7c11432117c4897d0cd.md +++ b/Explanations/8e1f0f08eef839903067c7c11432117c4897d0cd.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **jooq-meta-3.17.0** to **jooq-meta-3.16.6** has failed. +CI detected that the dependency upgrade from version **jooq-meta-3.16.6** to **jooq-meta-3.17.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,118 +10,64 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
symbol: class PostgresDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
symbol: class JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
symbol: method getBasedir()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
[ERROR] symbol: class JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/tools/JooqLogger.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/tools/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/DSLContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/tools/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/exception/DataAccessException.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/impl/DSL.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.0/jooq-meta-3.17.0.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
symbol: variable JDBCUtils
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
symbol: variable JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
symbol: class DSLContext
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
symbol: variable DSL
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
symbol: method setConnection(java.sql.Connection)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
[ERROR] symbol: class JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/tools/JooqLogger.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[118,5] method does not override or implement a method from a supertype -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
[ERROR] symbol: method getBasedir()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/SQLDialect.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.0/jooq-meta-3.17.0.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
symbol: class DataAccessException
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
[ERROR] symbol: class DSLContext
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
symbol: variable SQLDialect
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
[ERROR] symbol: variable JDBCUtils
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
[ERROR] symbol: variable super
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.0/jooq-meta-3.17.0.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
[ERROR] symbol: class DataAccessException
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/impl/DSL.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
symbol: variable super
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.0/jooq-3.17.0.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/8f757321e48d7ffb117cbc8fb13d316e23d0f58f.md b/Explanations/8f757321e48d7ffb117cbc8fb13d316e23d0f58f.md index e954a0c..2da28a7 100644 --- a/Explanations/8f757321e48d7ffb117cbc8fb13d316e23d0f58f.md +++ b/Explanations/8f757321e48d7ffb117cbc8fb13d316e23d0f58f.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **mybatis-spring-3.0.1** to **mybatis-spring-2.0.7** has failed. +CI detected that the dependency upgrade from version **mybatis-spring-2.0.7** to **mybatis-spring-3.0.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,9 +10,7 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[180,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[64,35] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[191,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[119,29] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao @@ -20,93 +18,21 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[80,29] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[275,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LogDao.java:[34,17] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LogDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[50,35] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[151,17] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[8,39] cannot find symbol
symbol: class SqlSessionDaoSupport - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[43,5] cannot find symbol
symbol: class SqlSessionFactoryBean
location: class gov.usgs.owi.nldi.springinit.MybatisConfig - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[27,15] cannot find symbol
[ERROR] symbol: method getClass()
[ERROR] location: class gov.usgs.owi.nldi.dao.BaseDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[191,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[53,5] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.NavigationDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/StreamingDao.java:[26,17] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.StreamingDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[128,15] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[80,29] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[202,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[128,15] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[4,34] cannot access org.mybatis.spring.support.SqlSessionDaoSupport
bad class file: /root/.m2/repository/org/mybatis/mybatis-spring/3.0.1/mybatis-spring-3.0.1.jar(/org/mybatis/spring/support/SqlSessionDaoSupport.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[275,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[50,35] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[99,14] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[215,34] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/StreamingDao.java:[26,17] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.StreamingDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[37,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.NavigationDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[99,14] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LogDao.java:[34,17] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LogDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[119,29] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[42,10] cannot find symbol
[ERROR] symbol: class SqlSessionFactoryBean
[ERROR] location: class gov.usgs.owi.nldi.springinit.MybatisConfig - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[33,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.NavigationDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[37,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.NavigationDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[28,5] cannot find symbol
symbol: method setSqlSessionFactory(org.apache.ibatis.session.SqlSessionFactory)
location: class gov.usgs.owi.nldi.dao.BaseDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[191,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[43,51] cannot find symbol
symbol: class SqlSessionFactoryBean
location: class gov.usgs.owi.nldi.springinit.MybatisConfig - * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[180,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[90,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[33,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.NavigationDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[256,34] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[90,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[187,12] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[187,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[42,10] cannot find symbol
symbol: class SqlSessionFactoryBean
location: class gov.usgs.owi.nldi.springinit.MybatisConfig - -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[167,35] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[43,5] cannot find symbol
[ERROR] symbol: class SqlSessionFactoryBean
[ERROR] location: class gov.usgs.owi.nldi.springinit.MybatisConfig * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LogDao.java:[30,24] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LogDao * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[9,26] cannot access org.mybatis.spring.SqlSessionFactoryBean
[ERROR] bad class file: /root/.m2/repository/org/mybatis/mybatis-spring/3.0.1/mybatis-spring-3.0.1.jar(/org/mybatis/spring/SqlSessionFactoryBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[256,34] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[27,15] cannot find symbol
[ERROR] symbol: method getClass()
[ERROR] location: class gov.usgs.owi.nldi.dao.BaseDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[215,34] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[256,34] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[167,35] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao @@ -118,28 +44,36 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[144,35] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[232,34] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/StreamingDao.java:[26,17] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.StreamingDao + +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[128,15] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[53,5] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.NavigationDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[9,26] cannot access org.mybatis.spring.SqlSessionFactoryBean
bad class file: /root/.m2/repository/org/mybatis/mybatis-spring/3.0.1/mybatis-spring-3.0.1.jar(/org/mybatis/spring/SqlSessionFactoryBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[275,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[27,15] cannot find symbol
symbol: method getClass()
location: class gov.usgs.owi.nldi.dao.BaseDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[50,35] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[64,35] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[104,20] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao - * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[43,51] cannot find symbol
[ERROR] symbol: class SqlSessionFactoryBean
[ERROR] location: class gov.usgs.owi.nldi.springinit.MybatisConfig -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LogDao.java:[30,24] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LogDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[215,34] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[232,34] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[99,14] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao + +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LogDao.java:[34,17] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LogDao + * > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[151,17] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.LookupDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[28,5] cannot find symbol
[ERROR] symbol: method setSqlSessionFactory(org.apache.ibatis.session.SqlSessionFactory)
[ERROR] location: class gov.usgs.owi.nldi.dao.BaseDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/springinit/MybatisConfig.java:[42,10] cannot find symbol
[ERROR] symbol: class SqlSessionFactoryBean
[ERROR] location: class gov.usgs.owi.nldi.springinit.MybatisConfig + +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[33,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.NavigationDao + +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/NavigationDao.java:[37,12] cannot find symbol
[ERROR] symbol: method getSqlSession()
[ERROR] location: class gov.usgs.owi.nldi.dao.NavigationDao -* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/LookupDao.java:[144,35] cannot find symbol
symbol: method getSqlSession()
location: class gov.usgs.owi.nldi.dao.LookupDao +* > [ERROR] /nldi-services/src/main/java/gov/usgs/owi/nldi/dao/BaseDao.java:[28,5] cannot find symbol
[ERROR] symbol: method setSqlSessionFactory(org.apache.ibatis.session.SqlSessionFactory)
[ERROR] location: class gov.usgs.owi.nldi.dao.BaseDao
diff --git a/Explanations/90cca141fc95d0510f92e23032c9d03813b074d8.md b/Explanations/90cca141fc95d0510f92e23032c9d03813b074d8.md index 2f3a02e..15de85e 100644 --- a/Explanations/90cca141fc95d0510f92e23032c9d03813b074d8.md +++ b/Explanations/90cca141fc95d0510f92e23032c9d03813b074d8.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.4** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,8 +11,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/979780b29cf329579fa703552f9090b23c10e81d.md b/Explanations/979780b29cf329579fa703552f9090b23c10e81d.md index 4b418cf..7f78532 100644 --- a/Explanations/979780b29cf329579fa703552f9090b23c10e81d.md +++ b/Explanations/979780b29cf329579fa703552f9090b23c10e81d.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.7** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.7** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,94 +13,42 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.7/spring-webmvc-6.0.7.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.7/spring-webmvc-6.0.7.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.7/spring-webmvc-6.0.7.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.7/spring-webmvc-6.0.7.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider @@ -109,6 +57,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.7/spring-context-6.0.7.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.7/spring-webmvc-6.0.7.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/9d51a768dc633ed4895a474f78eaaf84a3c209fd.md b/Explanations/9d51a768dc633ed4895a474f78eaaf84a3c209fd.md index 7abcd72..4af2a4d 100644 --- a/Explanations/9d51a768dc633ed4895a474f78eaaf84a3c209fd.md +++ b/Explanations/9d51a768dc633ed4895a474f78eaaf84a3c209fd.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.6** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.6** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,16 +13,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse @@ -35,75 +31,31 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.6/spring-web-6.0.6.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/9da8825fbdb24922b94be9eb82eefc73640d8f6b.md b/Explanations/9da8825fbdb24922b94be9eb82eefc73640d8f6b.md index a62550e..401118f 100644 --- a/Explanations/9da8825fbdb24922b94be9eb82eefc73640d8f6b.md +++ b/Explanations/9da8825fbdb24922b94be9eb82eefc73640d8f6b.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-data-jpa-3.0.0** to **spring-data-jpa-2.7.6** has failed. +CI detected that the dependency upgrade from version **spring-data-jpa-2.7.6** to **spring-data-jpa-3.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,123 +9,115 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/model/Patient.java:[73,18] cannot find symbol
symbol: class AuditingEntityListener - * > [ERROR] /openhospital-core/src/main/java/org/isf/supplier/service/SupplierIoOperationRepository.java:[32,56] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/agetype/service/AgeTypeIoOperationRepository.java:[31,55] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[32,43] cannot access org.springframework.data.annotation.CreatedDate
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/CreatedDate.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstock/service/LotIoOperationRepository.java:[34,51] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/pregtreattype/service/PregnantTreatmentTypeIoOperationRepository.java:[31,69] cannot find symbol
[ERROR] symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[27,39] cannot access org.springframework.data.domain.Page
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/Page.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /openhospital-core/src/main/java/org/isf/dlvrrestype/service/DeliveryResultIoOperationRepository.java:[31,62] cannot find symbol
[ERROR] symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[41,9] cannot find symbol
[ERROR] symbol: class Page
[ERROR] location: interface org.isf.examination.service.ExaminationIoOperationRepository + * > [ERROR] /openhospital-core/src/main/java/org/isf/distype/service/DiseaseTypeIoOperationRepository.java:[31,59] cannot find symbol
[ERROR] symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[41,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener + * > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperationRepository.java:[36,55] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[32,57] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[41,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.priceslist.service.PriceIoOperationRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[28,47] cannot access org.springframework.data.jpa.repository.Modifying
bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/Modifying.class)
class file has wrong version 60.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperationRepository.java:[40,91] cannot find symbol
[ERROR] symbol: class Pageable
[ERROR] location: interface org.isf.patient.service.PatientIoOperationRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstockward/service/MedicalStockWardIoOperationRepository.java:[35,64] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperations.java:[94,42] cannot find symbol
[ERROR] symbol: class Pageable
[ERROR] location: class org.isf.patient.service.PatientIoOperations +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/model/PriceList.java:[49,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener + * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[52,6] cannot find symbol
[ERROR] symbol: class LastModifiedBy
[ERROR] location: class org.isf.utils.db.Auditable +* > [ERROR] /openhospital-core/src/main/java/org/isf/dlvrtype/service/DeliveryTypeIoOperationRepository.java:[29,60] cannot find symbol
[ERROR] symbol: class JpaRepository + * > [ERROR] /openhospital-core/src/main/java/org/isf/malnutrition/service/MalnutritionIoOperationRepository.java:[33,60] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[34,53] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstock/service/MovementIoOperationRepository.java:[35,56] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/operation/service/OperationIoOperationRepository.java:[31,57] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[35,59] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserMenuItemIoOperationRepository.java:[33,60] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[39,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.patvac.service.PatVacIoOperationRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[34,10] cannot find symbol
symbol: class Modifying
location: interface org.isf.menu.service.GroupMenuIoOperationRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/dicom/service/DicomIoOperationRepository.java:[34,53] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[48,6] cannot find symbol
[ERROR] symbol: class CreatedDate
[ERROR] location: class org.isf.utils.db.Auditable -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[27,47] cannot access org.springframework.data.jpa.repository.JpaRepository
bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/JpaRepository.class)
class file has wrong version 60.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillItemsIoOperationRepository.java:[34,67] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/vactype/model/VaccineType.java:[49,18] cannot find symbol
symbol: class AuditingEntityListener +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PricesListIoOperationRepository.java:[32,58] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/vaccine/model/Vaccine.java:[51,18] cannot find symbol
symbol: class AuditingEntityListener +* > [ERROR] /openhospital-core/src/main/java/org/isf/medstockmovtype/service/MedicalStockMovementTypeIoOperationRepository.java:[31,72] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/visits/model/Visit.java:[58,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[27,54] cannot access org.springframework.data.jpa.repository.config.EnableJpaAuditing
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/config/EnableJpaAuditing.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /openhospital-core/src/main/java/org/isf/ward/model/Ward.java:[48,18] cannot find symbol
symbol: class AuditingEntityListener - * > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/model/Price.java:[51,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[36,10] cannot find symbol
symbol: class Query
location: interface org.isf.patvac.service.PatVacIoOperationRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstockward/service/MovementWardIoOperationRepository.java:[34,60] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/disease/model/Disease.java:[53,18] cannot find symbol
symbol: class AuditingEntityListener +* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[36,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.patvac.service.PatVacIoOperationRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[34,43] cannot access org.springframework.data.annotation.LastModifiedDate
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/LastModifiedDate.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[35,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.menu.service.GroupMenuIoOperationRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[36,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.patvac.service.PatVacIoOperationRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[41,110] cannot find symbol
[ERROR] symbol: class Pageable
[ERROR] location: interface org.isf.examination.service.ExaminationIoOperationRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/opd/service/OpdIoOperationRepository.java:[33,51] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[28,47] cannot access org.springframework.data.jpa.repository.Modifying
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/Modifying.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/model/Price.java:[38,51] cannot access org.springframework.data.jpa.domain.support.AuditingEntityListener
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/domain/support/AuditingEntityListener.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/AuditorAwareImpl.java:[32,42] cannot find symbol
symbol: class AuditorAware +* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserGroupIoOperationRepository.java:[34,57] cannot find symbol
[ERROR] symbol: class JpaRepository + +* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/model/PatientVaccine.java:[56,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener + +* > [ERROR] /openhospital-core/src/main/java/org/isf/exa/service/ExamIoOperationRepository.java:[31,52] cannot find symbol
[ERROR] symbol: class JpaRepository + +* > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillIoOperationRepository.java:[35,62] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[30,49] cannot access org.springframework.data.repository.query.Param
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/repository/query/Param.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /openhospital-core/src/main/java/org/isf/hospital/service/HospitalIoOperationRepository.java:[30,56] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/exa/service/ExamRowIoOperationRepository.java:[32,55] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[34,54] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/supplier/service/SupplierIoOperationRepository.java:[34,6] cannot find symbol
symbol: class Query
location: interface org.isf.supplier.service.SupplierIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/admtype/service/AdmissionTypeIoOperationRepository.java:[31,61] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[44,6] cannot find symbol
[ERROR] symbol: class CreatedBy
[ERROR] location: class org.isf.utils.db.Auditable -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[30,49] cannot access org.springframework.data.repository.query.Param
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/repository/query/Param.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /openhospital-core/src/main/java/org/isf/opd/model/Opd.java:[67,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener * > [ERROR] /openhospital-core/src/main/java/org/isf/ward/service/WardIoOperationRepository.java:[32,52] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[56,6] cannot find symbol
[ERROR] symbol: class LastModifiedDate
[ERROR] location: class org.isf.utils.db.Auditable -* > [ERROR] /openhospital-core/src/main/java/org/isf/medtype/service/MedicalTypeIoOperationRepository.java:[31,59] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/medicals/service/MedicalsIoOperationRepository.java:[33,56] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[26,39] cannot access org.springframework.data.domain.AuditorAware
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/AuditorAware.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /openhospital-core/src/main/java/org/isf/operation/service/OperationRowIoOperationRepository.java:[36,60] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[41,10] cannot find symbol
symbol: class Query
location: interface org.isf.priceslist.service.PriceIoOperationRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/AuditorAwareImpl.java:[32,42] cannot find symbol
[ERROR] symbol: class AuditorAware +* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/model/Patient.java:[73,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener + * > [ERROR] /openhospital-core/src/main/java/org/isf/therapy/service/TherapyIoOperationRepository.java:[32,55] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[32,57] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[39,10] cannot find symbol
symbol: class Query
location: interface org.isf.patvac.service.PatVacIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/dlvrtype/service/DeliveryTypeIoOperationRepository.java:[29,60] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperations.java:[94,42] cannot find symbol
symbol: class Pageable
location: class org.isf.patient.service.PatientIoOperations - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[32,43] cannot access org.springframework.data.annotation.CreatedDate
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/CreatedDate.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/ward/service/WardIoOperationRepository.java:[32,52] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillIoOperationRepository.java:[35,62] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserMenuItemIoOperationRepository.java:[43,44] cannot find symbol
[ERROR] symbol: class Param
[ERROR] location: interface org.isf.menu.service.UserMenuItemIoOperationRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstockward/service/MedicalStockWardIoOperationRepository.java:[35,64] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[33,2] cannot find symbol
[ERROR] symbol: class EnableJpaAuditing -* > [ERROR] /openhospital-core/src/main/java/org/isf/dlvrrestype/service/DeliveryResultIoOperationRepository.java:[31,62] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/lab/service/LabIoOperationRepository.java:[30,51] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[34,43] cannot access org.springframework.data.annotation.LastModifiedDate
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/LastModifiedDate.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -133,280 +125,88 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /openhospital-core/src/main/java/org/isf/vaccine/service/VaccineIoOperationRepository.java:[31,55] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperationRepository.java:[36,55] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/opetype/service/OperationTypeIoOperationRepository.java:[31,61] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/lab/service/LabRowIoOperationRepository.java:[30,54] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstock/service/MovementIoOperationRepository.java:[35,56] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/operation/service/OperationRowIoOperationRepository.java:[36,60] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PricesListIoOperationRepository.java:[32,58] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[27,47] cannot access org.springframework.data.jpa.repository.JpaRepository
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/JpaRepository.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /openhospital-core/src/main/java/org/isf/exa/service/ExamRowIoOperationRepository.java:[32,55] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/distype/model/DiseaseType.java:[47,18] cannot find symbol
symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/model/PriceList.java:[49,18] cannot find symbol
symbol: class AuditingEntityListener +* > [ERROR] /openhospital-core/src/main/java/org/isf/vactype/model/VaccineType.java:[49,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener -* > [ERROR] /openhospital-core/src/main/java/org/isf/operation/service/OperationIoOperationRepository.java:[31,57] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/model/GroupMenu.java:[48,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener * > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[36,36] cannot find symbol
[ERROR] symbol: class Param
[ERROR] location: interface org.isf.menu.service.GroupMenuIoOperationRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[35,59] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[40,91] cannot find symbol
symbol: class Param
location: interface org.isf.patvac.service.PatVacIoOperationRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[40,91] cannot find symbol
[ERROR] symbol: class Param
[ERROR] location: interface org.isf.patvac.service.PatVacIoOperationRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/distype/service/DiseaseTypeIoOperationRepository.java:[31,59] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[37,12] cannot find symbol
[ERROR] symbol: class AuditorAware
[ERROR] location: class org.isf.utils.db.JpaConfig * > [ERROR] /openhospital-core/src/main/java/org/isf/medtype/service/MedicalTypeIoOperationRepository.java:[31,59] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/visits/service/VisitsIoOperationRepository.java:[34,54] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/ward/model/Ward.java:[48,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener -* > [ERROR] /openhospital-core/src/main/java/org/isf/supplier/service/SupplierIoOperationRepository.java:[32,56] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/opd/service/OpdIoOperationRepository.java:[33,51] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[34,54] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[41,110] cannot find symbol
symbol: class Pageable
location: interface org.isf.examination.service.ExaminationIoOperationRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/dicomtype/service/DicomTypeIoOperationRepository.java:[31,57] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperationRepository.java:[28,39] cannot access org.springframework.data.domain.Pageable
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/Pageable.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /openhospital-core/src/main/java/org/isf/vaccine/model/Vaccine.java:[51,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener -* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperationRepository.java:[40,91] cannot find symbol
symbol: class Pageable
location: interface org.isf.patient.service.PatientIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[27,54] cannot access org.springframework.data.jpa.repository.config.EnableJpaAuditing
bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/config/EnableJpaAuditing.class)
class file has wrong version 60.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserMenuItemIoOperationRepository.java:[33,60] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[48,6] cannot find symbol
symbol: class CreatedDate
location: class org.isf.utils.db.Auditable - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[29,47] cannot access org.springframework.data.jpa.repository.Query
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/Query.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[40,10] cannot find symbol
[ERROR] symbol: class Modifying
[ERROR] location: interface org.isf.priceslist.service.PriceIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserGroupIoOperationRepository.java:[34,57] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[37,12] cannot find symbol
symbol: class AuditorAware
location: class org.isf.utils.db.JpaConfig - -* > [ERROR] /openhospital-core/src/main/java/org/isf/admtype/service/AdmissionTypeIoOperationRepository.java:[31,61] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/supplier/model/Supplier.java:[43,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/disctype/service/DischargeTypeIoOperationRepository.java:[31,61] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[34,10] cannot find symbol
[ERROR] symbol: class Modifying
[ERROR] location: interface org.isf.menu.service.GroupMenuIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[33,2] cannot find symbol
symbol: class EnableJpaAuditing - -* > [ERROR] /openhospital-core/src/main/java/org/isf/sms/service/SmsIoOperationRepository.java:[31,51] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[34,53] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/model/Price.java:[51,18] cannot find symbol
symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/dicomtype/service/DicomTypeIoOperationRepository.java:[31,57] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillPaymentIoOperationRepository.java:[37,69] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/distype/model/DiseaseType.java:[47,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/agetype/service/AgeTypeIoOperationRepository.java:[31,55] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/disctype/service/DischargeTypeIoOperationRepository.java:[31,61] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[27,39] cannot access org.springframework.data.domain.Page
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/Page.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[32,43] cannot access org.springframework.data.annotation.CreatedDate
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/CreatedDate.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[31,43] cannot access org.springframework.data.annotation.CreatedBy
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/CreatedBy.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[27,39] cannot access org.springframework.data.domain.Page
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/Page.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[41,9] cannot find symbol
[ERROR] symbol: class Page
[ERROR] location: interface org.isf.examination.service.ExaminationIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[41,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[40,10] cannot find symbol
symbol: class Modifying
location: interface org.isf.priceslist.service.PriceIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/supplier/model/Supplier.java:[43,18] cannot find symbol
symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[40,46] cannot find symbol
symbol: class Param
location: interface org.isf.patvac.service.PatVacIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[41,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.priceslist.service.PriceIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperationRepository.java:[40,91] cannot find symbol
[ERROR] symbol: class Pageable
[ERROR] location: interface org.isf.patient.service.PatientIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[41,9] cannot find symbol
symbol: class Page
location: interface org.isf.examination.service.ExaminationIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/model/PriceList.java:[49,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationOperations.java:[31,39] cannot access org.springframework.data.domain.PageRequest
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/PageRequest.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillItemsIoOperationRepository.java:[34,67] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/model/Price.java:[38,51] cannot access org.springframework.data.jpa.domain.support.AuditingEntityListener
bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/domain/support/AuditingEntityListener.class)
class file has wrong version 60.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/dlvrtype/service/DeliveryTypeIoOperationRepository.java:[29,60] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/opetype/service/OperationTypeIoOperationRepository.java:[31,61] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/model/GroupMenu.java:[48,18] cannot find symbol
symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[41,18] cannot find symbol
symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstock/service/MovementIoOperationRepository.java:[35,56] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[39,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.patvac.service.PatVacIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/medstockmovtype/service/MedicalStockMovementTypeIoOperationRepository.java:[31,72] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/dicom/service/DicomIoOperationRepository.java:[34,53] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillItemsIoOperationRepository.java:[34,67] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PricesListIoOperationRepository.java:[32,58] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[33,43] cannot access org.springframework.data.annotation.LastModifiedBy
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/LastModifiedBy.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/malnutrition/service/MalnutritionIoOperationRepository.java:[33,60] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/therapy/service/TherapyIoOperationRepository.java:[32,55] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/medstockmovtype/service/MedicalStockMovementTypeIoOperationRepository.java:[31,72] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserIoOperationRepository.java:[35,52] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/service/PatientIoOperationRepository.java:[28,39] cannot access org.springframework.data.domain.Pageable
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/Pageable.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstockward/service/MovementWardIoOperationRepository.java:[34,60] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[35,10] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.menu.service.GroupMenuIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/vaccine/service/VaccineIoOperationRepository.java:[31,55] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationIoOperationRepository.java:[41,110] cannot find symbol
[ERROR] symbol: class Pageable
[ERROR] location: interface org.isf.examination.service.ExaminationIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/exatype/service/ExamTypeIoOperationRepository.java:[31,56] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[28,47] cannot access org.springframework.data.jpa.repository.Modifying
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/Modifying.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserGroupIoOperationRepository.java:[34,57] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/model/PatientVaccine.java:[56,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/visits/model/Visit.java:[58,18] cannot find symbol
symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/disease/service/DiseaseIoOperationRepository.java:[33,55] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[35,10] cannot find symbol
symbol: class Query
location: interface org.isf.menu.service.GroupMenuIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/vactype/service/VaccineTypeIoOperationRepository.java:[31,59] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/exa/service/ExamIoOperationRepository.java:[31,52] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/admission/service/AdmissionIoOperationRepository.java:[34,57] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillIoOperationRepository.java:[35,62] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[36,36] cannot find symbol
symbol: class Param
location: interface org.isf.menu.service.GroupMenuIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[42,30] cannot find symbol
symbol: class Param
location: interface org.isf.priceslist.service.PriceIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[44,6] cannot find symbol
[ERROR] symbol: class CreatedBy
[ERROR] location: class org.isf.utils.db.Auditable - -* > [ERROR] /openhospital-core/src/main/java/org/isf/opd/model/Opd.java:[67,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/model/PatientVaccine.java:[56,18] cannot find symbol
symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/dicom/service/DicomIoOperationRepository.java:[34,53] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[44,6] cannot find symbol
symbol: class CreatedBy
location: class org.isf.utils.db.Auditable - -* > [ERROR] /openhospital-core/src/main/java/org/isf/patient/model/Patient.java:[73,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserMenuItemIoOperationRepository.java:[43,44] cannot find symbol
symbol: class Param
location: interface org.isf.menu.service.UserMenuItemIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserMenuItemIoOperationRepository.java:[43,44] cannot find symbol
[ERROR] symbol: class Param
[ERROR] location: interface org.isf.menu.service.UserMenuItemIoOperationRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[26,39] cannot access org.springframework.data.domain.AuditorAware
bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/AuditorAware.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[33,2] cannot find symbol
[ERROR] symbol: class EnableJpaAuditing - -* > [ERROR] /openhospital-core/src/main/java/org/isf/lab/service/LabIoOperationRepository.java:[30,51] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/operation/service/OperationRowIoOperationRepository.java:[36,60] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[27,47] cannot access org.springframework.data.jpa.repository.JpaRepository
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/JpaRepository.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/vactype/model/VaccineType.java:[49,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/lab/service/LabRowIoOperationRepository.java:[30,54] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/model/GroupMenu.java:[48,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/JpaConfig.java:[37,12] cannot find symbol
[ERROR] symbol: class AuditorAware
[ERROR] location: class org.isf.utils.db.JpaConfig - -* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstockward/service/MovementWardIoOperationRepository.java:[34,60] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[29,47] cannot access org.springframework.data.jpa.repository.Query
bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/Query.class)
class file has wrong version 60.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /openhospital-core/src/main/java/org/isf/dicomtype/service/DicomTypeIoOperationRepository.java:[31,57] cannot find symbol
[ERROR] symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[56,6] cannot find symbol
symbol: class LastModifiedDate
location: class org.isf.utils.db.Auditable - -* > [ERROR] /openhospital-core/src/main/java/org/isf/medicalstock/service/LotIoOperationRepository.java:[34,51] cannot find symbol
symbol: class JpaRepository - -* > [ERROR] /openhospital-core/src/main/java/org/isf/sms/service/SmsIoOperationRepository.java:[31,51] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/pricesothers/service/PriceOthersIoOperationRepository.java:[31,59] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/lab/service/LabIoOperationRepository.java:[30,51] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/examination/service/ExaminationOperations.java:[31,39] cannot access org.springframework.data.domain.PageRequest
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/domain/PageRequest.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /openhospital-core/src/main/java/org/isf/admission/service/AdmissionIoOperationRepository.java:[34,57] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/pricesothers/service/PriceOthersIoOperationRepository.java:[31,59] cannot find symbol
symbol: class JpaRepository - * > [ERROR] /openhospital-core/src/main/java/org/isf/supplier/service/SupplierIoOperationRepository.java:[34,6] cannot find symbol
[ERROR] symbol: class Query
[ERROR] location: interface org.isf.supplier.service.SupplierIoOperationRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/patvac/service/PatVacIoOperationRepository.java:[40,46] cannot find symbol
[ERROR] symbol: class Param
[ERROR] location: interface org.isf.patvac.service.PatVacIoOperationRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserMenuItemIoOperationRepository.java:[33,60] cannot find symbol
[ERROR] symbol: class JpaRepository + * > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[33,43] cannot access org.springframework.data.annotation.LastModifiedBy
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-commons/3.0.0/spring-data-commons-3.0.0.jar(/org/springframework/data/annotation/LastModifiedBy.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /openhospital-core/src/main/java/org/isf/vactype/service/VaccineTypeIoOperationRepository.java:[31,59] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/pregtreattype/service/PregnantTreatmentTypeIoOperationRepository.java:[31,69] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[29,47] cannot access org.springframework.data.jpa.repository.Query
[ERROR] bad class file: /root/.m2/repository/org/springframework/data/spring-data-jpa/3.0.0/spring-data-jpa-3.0.0.jar(/org/springframework/data/jpa/repository/Query.class)
[ERROR] class file has wrong version 60.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /openhospital-core/src/main/java/org/isf/medicals/service/MedicalsIoOperationRepository.java:[33,56] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[40,10] cannot find symbol
[ERROR] symbol: class Modifying
[ERROR] location: interface org.isf.priceslist.service.PriceIoOperationRepository + +* > [ERROR] /openhospital-core/src/main/java/org/isf/admtype/service/AdmissionTypeIoOperationRepository.java:[31,61] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/exa/service/ExamIoOperationRepository.java:[31,52] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/supplier/model/Supplier.java:[43,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener -* > [ERROR] /openhospital-core/src/main/java/org/isf/hospital/service/HospitalIoOperationRepository.java:[30,56] cannot find symbol
symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/GroupMenuIoOperationRepository.java:[34,10] cannot find symbol
[ERROR] symbol: class Modifying
[ERROR] location: interface org.isf.menu.service.GroupMenuIoOperationRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/disease/model/Disease.java:[53,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener -* > [ERROR] /openhospital-core/src/main/java/org/isf/opd/model/Opd.java:[67,18] cannot find symbol
symbol: class AuditingEntityListener - * > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[42,30] cannot find symbol
[ERROR] symbol: class Param
[ERROR] location: interface org.isf.priceslist.service.PriceIoOperationRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/sms/service/SmsIoOperationRepository.java:[31,51] cannot find symbol
[ERROR] symbol: class JpaRepository + +* > [ERROR] /openhospital-core/src/main/java/org/isf/priceslist/service/PriceIoOperationRepository.java:[34,53] cannot find symbol
[ERROR] symbol: class JpaRepository + * > [ERROR] /openhospital-core/src/main/java/org/isf/menu/service/UserIoOperationRepository.java:[35,52] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/visits/service/VisitsIoOperationRepository.java:[34,54] cannot find symbol
[ERROR] symbol: class JpaRepository -* > [ERROR] /openhospital-core/src/main/java/org/isf/utils/db/Auditable.java:[52,6] cannot find symbol
symbol: class LastModifiedBy
location: class org.isf.utils.db.Auditable - * > [ERROR] /openhospital-core/src/main/java/org/isf/disease/service/DiseaseIoOperationRepository.java:[33,55] cannot find symbol
[ERROR] symbol: class JpaRepository * > [ERROR] /openhospital-core/src/main/java/org/isf/accounting/service/AccountingBillPaymentIoOperationRepository.java:[37,69] cannot find symbol
[ERROR] symbol: class JpaRepository +* > [ERROR] /openhospital-core/src/main/java/org/isf/distype/model/DiseaseType.java:[47,18] cannot find symbol
[ERROR] symbol: class AuditingEntityListener + +* > [ERROR] /openhospital-core/src/main/java/org/isf/agetype/service/AgeTypeIoOperationRepository.java:[31,55] cannot find symbol
[ERROR] symbol: class JpaRepository + +* > [ERROR] /openhospital-core/src/main/java/org/isf/disctype/service/DischargeTypeIoOperationRepository.java:[31,61] cannot find symbol
[ERROR] symbol: class JpaRepository + * > [ERROR] /openhospital-core/src/main/java/org/isf/exatype/service/ExamTypeIoOperationRepository.java:[31,56] cannot find symbol
[ERROR] symbol: class JpaRepository
diff --git a/Explanations/9dbbd30590fa87f3e719615e0816c231106e01de.md b/Explanations/9dbbd30590fa87f3e719615e0816c231106e01de.md index d430b7b..7e4fefb 100644 --- a/Explanations/9dbbd30590fa87f3e719615e0816c231106e01de.md +++ b/Explanations/9dbbd30590fa87f3e719615e0816c231106e01de.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-boot-starter-3.0.3** to **spring-boot-starter-2.7.5** has failed. +CI detected that the dependency upgrade from version **spring-boot-starter-2.7.5** to **spring-boot-starter-3.0.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,7 +13,11 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.3/spring-boot-3.0.3.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService @@ -23,127 +27,55 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
[ERROR] symbol: class ConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/validation/annotation/Validated.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
symbol: class Validated - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
symbol: class Configuration - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
[ERROR] symbol: class Component * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.3/spring-boot-3.0.3.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.3/spring-boot-3.0.3.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
symbol: class ConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.3/spring-boot-3.0.3.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.3/spring-boot-autoconfigure-3.0.3.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
[ERROR] symbol: class Service diff --git a/Explanations/a1ff30e0bc6a9b48e024a8ab27cefda3ad85b530.md b/Explanations/a1ff30e0bc6a9b48e024a8ab27cefda3ad85b530.md index 76901ce..a267a61 100644 --- a/Explanations/a1ff30e0bc6a9b48e024a8ab27cefda3ad85b530.md +++ b/Explanations/a1ff30e0bc6a9b48e024a8ab27cefda3ad85b530.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **jooq-meta-3.17.3** to **jooq-meta-3.16.6** has failed. +CI detected that the dependency upgrade from version **jooq-meta-3.16.6** to **jooq-meta-3.17.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,52 +10,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
symbol: class PostgresDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
symbol: class JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
symbol: method getBasedir()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/DSLContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
symbol: variable JDBCUtils
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.3/jooq-meta-3.17.3.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
symbol: variable JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
symbol: class DSLContext
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
symbol: variable DSL
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
symbol: method setConnection(java.sql.Connection)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/tools/JooqLogger.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -64,64 +24,50 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
[ERROR] symbol: class JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/tools/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[118,5] method does not override or implement a method from a supertype +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.3/jooq-meta-3.17.3.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/impl/DSL.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[118,5] method does not override or implement a method from a supertype * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
[ERROR] symbol: method getBasedir()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/SQLDialect.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/impl/DSL.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
symbol: class DataAccessException
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/tools/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
[ERROR] symbol: class DSLContext
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
symbol: variable SQLDialect
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
[ERROR] symbol: variable JDBCUtils
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
[ERROR] symbol: variable super
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/exception/DataAccessException.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
[ERROR] symbol: class DataAccessException
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.3/jooq-3.17.3.jar(/org/jooq/tools/JooqLogger.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
symbol: variable super
location: class com.github.sabomichal.jooq.PostgresDDLDatabase -
diff --git a/Explanations/a698299490d70ce07b7af6e29ebf4627d412f4dd.md b/Explanations/a698299490d70ce07b7af6e29ebf4627d412f4dd.md index 538641d..2274400 100644 --- a/Explanations/a698299490d70ce07b7af6e29ebf4627d412f4dd.md +++ b/Explanations/a698299490d70ce07b7af6e29ebf4627d412f4dd.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.3** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,28 +10,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext @@ -40,6 +20,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext
diff --git a/Explanations/aa14451c6f218af9c08e846345d83259eb7d46a8.md b/Explanations/aa14451c6f218af9c08e846345d83259eb7d46a8.md index 57da5f4..839b7f5 100644 --- a/Explanations/aa14451c6f218af9c08e846345d83259eb7d46a8.md +++ b/Explanations/aa14451c6f218af9c08e846345d83259eb7d46a8.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.7** to **spring-core-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.23** to **spring-core-6.0.7** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,20 +11,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.7/spring-core-6.0.7.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem -
diff --git a/Explanations/ab70529b2edf0a0b3f672278e191dc207d1b8711.md b/Explanations/ab70529b2edf0a0b3f672278e191dc207d1b8711.md index 7725314..3804032 100644 --- a/Explanations/ab70529b2edf0a0b3f672278e191dc207d1b8711.md +++ b/Explanations/ab70529b2edf0a0b3f672278e191dc207d1b8711.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.5** to **spring-core-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.23** to **spring-core-6.0.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,18 +13,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem - diff --git a/Explanations/abe29340c60b0bfe93b13b638838163cf355eb03.md b/Explanations/abe29340c60b0bfe93b13b638838163cf355eb03.md index cc45790..6fbbb45 100644 --- a/Explanations/abe29340c60b0bfe93b13b638838163cf355eb03.md +++ b/Explanations/abe29340c60b0bfe93b13b638838163cf355eb03.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-boot-starter-3.0.6** to **spring-boot-starter-2.7.5** has failed. +CI detected that the dependency upgrade from version **spring-boot-starter-2.7.5** to **spring-boot-starter-3.0.6** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,6 +11,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
[ERROR] symbol: class Service @@ -19,85 +23,17 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
[ERROR] symbol: class ConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.6/spring-boot-3.0.6.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
symbol: class Validated - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/validation/annotation/Validated.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.6/spring-boot-3.0.6.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
symbol: class Configuration - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.6/spring-boot-3.0.6.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -105,46 +41,42 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
symbol: class ConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.6/spring-boot-3.0.6.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
symbol: class EnableConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.8/spring-beans-6.0.8.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.6/spring-boot-autoconfigure-3.0.6.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.6/spring-boot-3.0.6.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +
diff --git a/Explanations/ae17c8e47b93596cffeb2ec9241465cf39c7f8eb.md b/Explanations/ae17c8e47b93596cffeb2ec9241465cf39c7f8eb.md index e736d60..a8464b5 100644 --- a/Explanations/ae17c8e47b93596cffeb2ec9241465cf39c7f8eb.md +++ b/Explanations/ae17c8e47b93596cffeb2ec9241465cf39c7f8eb.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.3** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,75 +13,35 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.3/spring-beans-6.0.3.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.3/spring-beans-6.0.3.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -89,22 +49,14 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.3/spring-beans-6.0.3.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.3/spring-beans-6.0.3.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.3/spring-web-6.0.3.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/b19ea99f63b85bbe2bcbdb67bd57459a79f4e677.md b/Explanations/b19ea99f63b85bbe2bcbdb67bd57459a79f4e677.md index 2bfee93..0e9eece 100644 --- a/Explanations/b19ea99f63b85bbe2bcbdb67bd57459a79f4e677.md +++ b/Explanations/b19ea99f63b85bbe2bcbdb67bd57459a79f4e677.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **jooq-meta-3.17.2** to **jooq-meta-3.16.6** has failed. +CI detected that the dependency upgrade from version **jooq-meta-3.16.6** to **jooq-meta-3.17.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,99 +10,53 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
symbol: class PostgresDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
symbol: class JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
symbol: method getBasedir()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.2/jooq-meta-3.17.2.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/tools/JooqLogger.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/DSLContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
symbol: variable JDBCUtils
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
symbol: variable JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
symbol: class DSLContext
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
symbol: variable DSL
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
symbol: method setConnection(java.sql.Connection)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/tools/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
[ERROR] symbol: variable SQLDialect
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
[ERROR] symbol: class JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/impl/DSL.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/exception/DataAccessException.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/tools/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[118,5] method does not override or implement a method from a supertype * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
[ERROR] symbol: method getBasedir()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/SQLDialect.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/impl/DSL.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
symbol: class DataAccessException
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
[ERROR] symbol: class DSLContext
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
symbol: variable SQLDialect
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.2/jooq-3.17.2.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase @@ -116,12 +70,4 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
[ERROR] symbol: class DataAccessException
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
symbol: variable super
location: class com.github.sabomichal.jooq.PostgresDDLDatabase -
diff --git a/Explanations/b2b18584e757c44b1468383252d6a9761f8097de.md b/Explanations/b2b18584e757c44b1468383252d6a9761f8097de.md index ef80563..683d979 100644 --- a/Explanations/b2b18584e757c44b1468383252d6a9761f8097de.md +++ b/Explanations/b2b18584e757c44b1468383252d6a9761f8097de.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.5** to **spring-context-5.3.25** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.25** to **spring-context-6.0.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,36 +10,24 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/core/io/Resource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/format/annotation/DateTimeFormat.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.5/spring-context-6.0.5.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.5/spring-core-6.0.5.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist + +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist + * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model
diff --git a/Explanations/b92fdfdaeea759fb558907ef8f7e3d46c170f886.md b/Explanations/b92fdfdaeea759fb558907ef8f7e3d46c170f886.md index 0b4b77f..8f6212a 100644 --- a/Explanations/b92fdfdaeea759fb558907ef8f7e3d46c170f886.md +++ b/Explanations/b92fdfdaeea759fb558907ef8f7e3d46c170f886.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.1** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,6 +13,4 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.1/spring-core-6.0.1.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.1/spring-core-6.0.1.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - diff --git a/Explanations/bad55510363bde900a60f13ecc744e0c244397d4.md b/Explanations/bad55510363bde900a60f13ecc744e0c244397d4.md index bb6b32f..a17d4d9 100644 --- a/Explanations/bad55510363bde900a60f13ecc744e0c244397d4.md +++ b/Explanations/bad55510363bde900a60f13ecc744e0c244397d4.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.1** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,36 +10,24 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/format/annotation/DateTimeFormat.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.1/spring-core-6.0.1.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model + * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.1/spring-core-6.0.1.jar(/org/springframework/core/io/Resource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.1/spring-core-6.0.1.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model
diff --git a/Explanations/bcafa6f39116555a4c53882ed2cf2835594d9114.md b/Explanations/bcafa6f39116555a4c53882ed2cf2835594d9114.md index b79a3a8..7347004 100644 --- a/Explanations/bcafa6f39116555a4c53882ed2cf2835594d9114.md +++ b/Explanations/bcafa6f39116555a4c53882ed2cf2835594d9114.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.3** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,104 +11,54 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.3/spring-webmvc-6.0.3.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.3/spring-webmvc-6.0.3.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.3/spring-webmvc-6.0.3.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.3/spring-webmvc-6.0.3.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.3/spring-webmvc-6.0.3.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider +
diff --git a/Explanations/bdbb81614557858922836294d1d6dd3dd661f10c.md b/Explanations/bdbb81614557858922836294d1d6dd3dd661f10c.md index d87f1ae..8f3d4d2 100644 --- a/Explanations/bdbb81614557858922836294d1d6dd3dd661f10c.md +++ b/Explanations/bdbb81614557858922836294d1d6dd3dd661f10c.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.3** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,36 +10,24 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist - -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/format/annotation/DateTimeFormat.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/core/io/Resource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,39] package DateTimeFormat does not exist -* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[70,4] cannot find symbol
symbol: class DateTimeFormat
location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,39] package DateTimeFormat does not exist * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[62,39] package DateTimeFormat does not exist + * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[19,45] cannot access org.springframework.format.annotation.DateTimeFormat
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/format/annotation/DateTimeFormat.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[77,38] cannot access org.springframework.core.io.Resource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/core/io/Resource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[58,39] package DateTimeFormat does not exist + * > [ERROR] /micronaut-openapi-codegen/gen/main/java/testmodel/spring/Model.java:[66,4] cannot find symbol
[ERROR] symbol: class DateTimeFormat
[ERROR] location: class testmodel.spring.Model
diff --git a/Explanations/c1fc16b4fe9dfdfa16ce7248fccad0e7d994094d.md b/Explanations/c1fc16b4fe9dfdfa16ce7248fccad0e7d994094d.md index 1d8a2ae..7c4c872 100644 --- a/Explanations/c1fc16b4fe9dfdfa16ce7248fccad0e7d994094d.md +++ b/Explanations/c1fc16b4fe9dfdfa16ce7248fccad0e7d994094d.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.2** to **spring-core-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.23** to **spring-core-6.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,20 +11,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[17,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[25,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/util/FileUtil.java:[13,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[39,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem -
diff --git a/Explanations/c4950c79dfe902dae8991ff722216c7ba787bf32.md b/Explanations/c4950c79dfe902dae8991ff722216c7ba787bf32.md index db7fd06..8640fa7 100644 --- a/Explanations/c4950c79dfe902dae8991ff722216c7ba787bf32.md +++ b/Explanations/c4950c79dfe902dae8991ff722216c7ba787bf32.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.4** to **spring-core-5.3.19** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.19** to **spring-core-6.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,92 +9,52 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,19] cannot find symbol
symbol: class AsyncListenableTaskExecutor
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[35,44] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[31,123] cannot find symbol
symbol: class ListenableFuture +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[44,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[29,120] cannot find symbol
[ERROR] symbol: class ListenableFuture +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,19] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper + * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[72,31] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[51,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper + +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[31,123] cannot find symbol
[ERROR] symbol: class ListenableFuture + +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[74,13] method does not override or implement a method from a supertype + +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[80,13] method does not override or implement a method from a supertype + * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,62] cannot find symbol
[ERROR] symbol: class TaskExecutorAdapter
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[73,41] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[21,37] cannot access org.springframework.core.task.AsyncListenableTaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/task/AsyncListenableTaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,19] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,55] cannot find symbol
[ERROR] symbol: class SettableListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,68] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,9] cannot find symbol
[ERROR] symbol: class SettableListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,9] cannot find symbol
symbol: class SettableListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[34,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper + +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[22,43] cannot access org.springframework.util.concurrent.ListenableFutureCallback
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/ListenableFutureCallback.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[22,45] cannot access org.springframework.core.task.support.TaskExecutorAdapter
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/task/support/TaskExecutorAdapter.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[37,41] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[72,31] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,62] cannot find symbol
symbol: class TaskExecutorAdapter
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[31,19] cannot find symbol
[ERROR] symbol: class AsyncListenableTaskExecutor
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[34,12] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[43,13] method does not override or implement a method from a supertype * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[23,43] cannot access org.springframework.util.concurrent.ListenableFuture
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/ListenableFuture.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[21,37] cannot access org.springframework.core.task.AsyncListenableTaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/task/AsyncListenableTaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[22,45] cannot access org.springframework.core.task.support.TaskExecutorAdapter
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/core/task/support/TaskExecutorAdapter.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,68] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[37,41] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[44,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[22,43] cannot access org.springframework.util.concurrent.ListenableFutureCallback
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/ListenableFutureCallback.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[35,44] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[32,19] cannot find symbol
[ERROR] symbol: class ListenableFutureCallback
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[74,13] method does not override or implement a method from a supertype - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[80,13] method does not override or implement a method from a supertype - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[51,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[31,123] cannot find symbol
[ERROR] symbol: class ListenableFuture - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,55] cannot find symbol
[ERROR] symbol: class SettableListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[29,120] cannot find symbol
symbol: class ListenableFuture - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[51,12] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[34,12] cannot find symbol
[ERROR] symbol: class ListenableFuture
[ERROR] location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[23,43] cannot access org.springframework.util.concurrent.ListenableFuture
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/ListenableFuture.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[22,43] cannot access org.springframework.util.concurrent.ListenableFutureCallback
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/ListenableFutureCallback.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[24,43] cannot access org.springframework.util.concurrent.SettableListenableFuture
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/SettableListenableFuture.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[73,41] cannot find symbol
symbol: class ListenableFutureCallback
location: class net.javacrumbs.futureconverter.common.test.spring.SpringConvertedFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[45,55] cannot find symbol
symbol: class SettableListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper - -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[44,12] cannot find symbol
symbol: class ListenableFuture
location: class net.javacrumbs.futureconverter.common.test.spring.SpringOriginalFutureTestHelper +* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[24,43] cannot access org.springframework.util.concurrent.SettableListenableFuture
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/SettableListenableFuture.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringConvertedFutureTestHelper.java:[38,13] method does not override or implement a method from a supertype -* > [ERROR] /future-converter/common-test/src/main/java/net/javacrumbs/futureconverter/common/test/spring/SpringOriginalFutureTestHelper.java:[24,43] cannot access org.springframework.util.concurrent.SettableListenableFuture
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.4/spring-core-6.0.4.jar(/org/springframework/util/concurrent/SettableListenableFuture.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -
diff --git a/Explanations/c5905f7220e1129a0448715ee5d0e61ee5ac31e1.md b/Explanations/c5905f7220e1129a0448715ee5d0e61ee5ac31e1.md index 4f836dd..dcb3328 100644 --- a/Explanations/c5905f7220e1129a0448715ee5d0e61ee5ac31e1.md +++ b/Explanations/c5905f7220e1129a0448715ee5d0e61ee5ac31e1.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.10** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.10** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,36 +10,20 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.10/spring-context-6.0.10.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.10/spring-context-6.0.10.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.10/spring-context-6.0.10.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.10/spring-context-6.0.10.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.10/spring-context-6.0.10.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/c83979c19ca572bfef0fa96d73772fdbeeddd109.md b/Explanations/c83979c19ca572bfef0fa96d73772fdbeeddd109.md index 54cdfcd..9d46d2f 100644 --- a/Explanations/c83979c19ca572bfef0fa96d73772fdbeeddd109.md +++ b/Explanations/c83979c19ca572bfef0fa96d73772fdbeeddd109.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **graphql-java-servlet-15.0.0** to **graphql-java-servlet-14.0.0** has failed. +CI detected that the dependency upgrade from version **graphql-java-servlet-14.0.0** to **graphql-java-servlet-15.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -9,29 +9,15 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[19,35] cannot access graphql.kickstart.execution.GraphQLQueryInvoker
bad class file: /root/.m2/repository/com/graphql-java-kickstart/graphql-java-kickstart/15.0.0/graphql-java-kickstart-15.0.0.jar(/graphql/kickstart/execution/GraphQLQueryInvoker.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[46,9] cannot find symbol
symbol: variable GraphQLQueryInvoker
location: class com.smoketurner.dropwizard.graphql.GraphQLBundle - -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[51,36] cannot access graphql.kickstart.servlet.GraphQLConfiguration
bad class file: /root/.m2/repository/com/graphql-java-kickstart/graphql-java-servlet/15.0.0/graphql-java-servlet-15.0.0.jar(/graphql/kickstart/servlet/GraphQLConfiguration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[19,35] cannot access graphql.kickstart.execution.GraphQLQueryInvoker
[ERROR] bad class file: /root/.m2/repository/com/graphql-java-kickstart/graphql-java-kickstart/15.0.0/graphql-java-kickstart-15.0.0.jar(/graphql/kickstart/execution/GraphQLQueryInvoker.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[46,9] cannot find symbol
[ERROR] symbol: variable GraphQLQueryInvoker
[ERROR] location: class com.smoketurner.dropwizard.graphql.GraphQLBundle - -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[54,40] cannot find symbol
symbol: variable GraphQLHttpServlet
location: class com.smoketurner.dropwizard.graphql.GraphQLBundle - * > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[45,11] cannot find symbol
[ERROR] symbol: class GraphQLQueryInvoker
[ERROR] location: class com.smoketurner.dropwizard.graphql.GraphQLBundle * > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[51,36] cannot access graphql.kickstart.servlet.GraphQLConfiguration
[ERROR] bad class file: /root/.m2/repository/com/graphql-java-kickstart/graphql-java-servlet/15.0.0/graphql-java-servlet-15.0.0.jar(/graphql/kickstart/servlet/GraphQLConfiguration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[54,11] cannot find symbol
symbol: class GraphQLHttpServlet
location: class com.smoketurner.dropwizard.graphql.GraphQLBundle - -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[20,33] cannot access graphql.kickstart.servlet.GraphQLHttpServlet
bad class file: /root/.m2/repository/com/graphql-java-kickstart/graphql-java-servlet/15.0.0/graphql-java-servlet-15.0.0.jar(/graphql/kickstart/servlet/GraphQLHttpServlet.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[54,11] cannot find symbol
[ERROR] symbol: class GraphQLHttpServlet
[ERROR] location: class com.smoketurner.dropwizard.graphql.GraphQLBundle -* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[45,11] cannot find symbol
symbol: class GraphQLQueryInvoker
location: class com.smoketurner.dropwizard.graphql.GraphQLBundle +* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[19,35] cannot access graphql.kickstart.execution.GraphQLQueryInvoker
[ERROR] bad class file: /root/.m2/repository/com/graphql-java-kickstart/graphql-java-kickstart/15.0.0/graphql-java-kickstart-15.0.0.jar(/graphql/kickstart/execution/GraphQLQueryInvoker.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[46,9] cannot find symbol
[ERROR] symbol: variable GraphQLQueryInvoker
[ERROR] location: class com.smoketurner.dropwizard.graphql.GraphQLBundle * > [ERROR] /dropwizard-graphql/graphql-core/src/main/java/com/smoketurner/dropwizard/graphql/GraphQLBundle.java:[20,33] cannot access graphql.kickstart.servlet.GraphQLHttpServlet
[ERROR] bad class file: /root/.m2/repository/com/graphql-java-kickstart/graphql-java-servlet/15.0.0/graphql-java-servlet-15.0.0.jar(/graphql/kickstart/servlet/GraphQLHttpServlet.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/c8da6c3c823d745bb37b072a4a33b6342a86dcd9.md b/Explanations/c8da6c3c823d745bb37b072a4a33b6342a86dcd9.md index 12b69bf..c9d5563 100644 --- a/Explanations/c8da6c3c823d745bb37b072a4a33b6342a86dcd9.md +++ b/Explanations/c8da6c3c823d745bb37b072a4a33b6342a86dcd9.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.0** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,9 +13,9 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController @@ -23,88 +23,40 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService + +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.0/spring-beans-6.0.0.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.0/spring-web-6.0.0.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +
diff --git a/Explanations/d675fa18d22f8ad374f8d6cb7e0dfd9b1f18cc58.md b/Explanations/d675fa18d22f8ad374f8d6cb7e0dfd9b1f18cc58.md index 1d915d5..0626dbd 100644 --- a/Explanations/d675fa18d22f8ad374f8d6cb7e0dfd9b1f18cc58.md +++ b/Explanations/d675fa18d22f8ad374f8d6cb7e0dfd9b1f18cc58.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.1** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,16 +13,16 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.1/spring-webmvc-6.0.1.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService @@ -31,84 +31,34 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.1/spring-webmvc-6.0.1.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.1/spring-webmvc-6.0.1.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.1/spring-webmvc-6.0.1.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.1/spring-webmvc-6.0.1.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.1/spring-context-6.0.1.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + diff --git a/Explanations/d7cc1744503dcd393468db7cbc47cec0cea2a2f0.md b/Explanations/d7cc1744503dcd393468db7cbc47cec0cea2a2f0.md index 333f467..25074de 100644 --- a/Explanations/d7cc1744503dcd393468db7cbc47cec0cea2a2f0.md +++ b/Explanations/d7cc1744503dcd393468db7cbc47cec0cea2a2f0.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.3** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.3** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,6 +13,4 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.3/spring-core-6.0.3.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - diff --git a/Explanations/df8452d0d7878f371c8775814e7a60cf6cecbfbb.md b/Explanations/df8452d0d7878f371c8775814e7a60cf6cecbfbb.md index d8d6d1b..197a997 100644 --- a/Explanations/df8452d0d7878f371c8775814e7a60cf6cecbfbb.md +++ b/Explanations/df8452d0d7878f371c8775814e7a60cf6cecbfbb.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-context-6.0.0** to **spring-context-5.3.23** has failed. +CI detected that the dependency upgrade from version **spring-context-5.3.23** to **spring-context-6.0.0** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -12,34 +12,18 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/ConfigurableApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[6,35] cannot access org.springframework.context.ConfigurableApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/ConfigurableApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[53,41] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
symbol: class ApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext - * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[33,11] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[52,65] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext * > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[41,5] reference to CallActivityMockForSpringContext is ambiguous
[ERROR] both constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,org.springframework.beans.factory.config.SingletonBeanRegistry) in org.camunda.community.mockito.process.CallActivityMockForSpringContext and constructor CallActivityMockForSpringContext(java.lang.String,org.camunda.community.mockito.process.CallActivityMock.MockedModelConfigurer,ApplicationContext) in org.camunda.community.mockito.process.CallActivityMockForSpringContext match -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[5,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.0/spring-context-6.0.0.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[48,73] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext -* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
symbol: class ConfigurableApplicationContext
location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext +* > [ERROR] /camunda-platform-7-mockito/src/main/java/org/camunda/community/mockito/process/CallActivityMockForSpringContext.java:[56,14] cannot find symbol
[ERROR] symbol: class ConfigurableApplicationContext
[ERROR] location: class org.camunda.community.mockito.process.CallActivityMockForSpringContext diff --git a/Explanations/e14a9e4a300747a582012aec4d40a6a69f5fd4f4.md b/Explanations/e14a9e4a300747a582012aec4d40a6a69f5fd4f4.md index 628709c..0ec2bdc 100644 --- a/Explanations/e14a9e4a300747a582012aec4d40a6a69f5fd4f4.md +++ b/Explanations/e14a9e4a300747a582012aec4d40a6a69f5fd4f4.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.5** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.5** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,12 +13,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse @@ -27,81 +27,33 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.5/spring-beans-6.0.5.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.5/spring-web-6.0.5.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/e14e4c4fa02468ad27d303785c26539a6b3b8eab.md b/Explanations/e14e4c4fa02468ad27d303785c26539a6b3b8eab.md index c218d36..91d10bf 100644 --- a/Explanations/e14e4c4fa02468ad27d303785c26539a6b3b8eab.md +++ b/Explanations/e14e4c4fa02468ad27d303785c26539a6b3b8eab.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.2** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,102 +13,52 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.2/spring-webmvc-6.0.2.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.2/spring-webmvc-6.0.2.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.2/spring-webmvc-6.0.2.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.2/spring-context-6.0.2.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.2/spring-webmvc-6.0.2.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + diff --git a/Explanations/e47fd8edc5227b6852ebd2466dd89049c9907b80.md b/Explanations/e47fd8edc5227b6852ebd2466dd89049c9907b80.md index 6d049c0..8a373cf 100644 --- a/Explanations/e47fd8edc5227b6852ebd2466dd89049c9907b80.md +++ b/Explanations/e47fd8edc5227b6852ebd2466dd89049c9907b80.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.11** to **spring-core-5.3.27** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.27** to **spring-core-6.0.11** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,20 +11,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.11/spring-core-6.0.11.jar(/org/springframework/util/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.11/spring-core-6.0.11.jar(/org/springframework/util/FileSystemUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
[ERROR] symbol: class TaskExecutor
[ERROR] location: class com.lpvs.LicensePreValidationSystem -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.11/spring-core-6.0.11.jar(/org/springframework/core/task/TaskExecutor.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /LPVS/src/main/java/com/lpvs/controller/GitHubWebhooksController.java:[27,32] cannot access org.springframework.util.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.11/spring-core-6.0.11.jar(/org/springframework/util/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[37,12] cannot find symbol
symbol: class TaskExecutor
location: class com.lpvs.LicensePreValidationSystem - * > [ERROR] /LPVS/src/main/java/com/lpvs/LicensePreValidationSystem.java:[15,37] cannot access org.springframework.core.task.TaskExecutor
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.11/spring-core-6.0.11.jar(/org/springframework/core/task/TaskExecutor.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /LPVS/src/main/java/com/lpvs/util/LPVSFileUtil.java:[15,32] cannot access org.springframework.util.FileSystemUtils
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.11/spring-core-6.0.11.jar(/org/springframework/util/FileSystemUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. -
diff --git a/Explanations/eb82573b99b6d9688e557d3490fa5d3e9512c99b.md b/Explanations/eb82573b99b6d9688e557d3490fa5d3e9512c99b.md index 1cbc52b..bd210f2 100644 --- a/Explanations/eb82573b99b6d9688e557d3490fa5d3e9512c99b.md +++ b/Explanations/eb82573b99b6d9688e557d3490fa5d3e9512c99b.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **jooq-meta-3.17.1** to **jooq-meta-3.16.6** has failed. +CI detected that the dependency upgrade from version **jooq-meta-3.16.6** to **jooq-meta-3.17.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -10,15 +10,15 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
symbol: class PostgresDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
[ERROR] symbol: variable DSL
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype + * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/SQLDialect.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
symbol: class JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
symbol: method getBasedir()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.1/jooq-meta-3.17.1.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -26,84 +26,38 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/DSLContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
symbol: variable JDBCUtils
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/tools/JooqLogger.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
symbol: variable JooqLogger
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/tools/StringUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
symbol: class DSLContext
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,16] cannot find symbol
symbol: variable DSL
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
symbol: method setConnection(java.sql.Connection)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[48,5] method does not override or implement a method from a supertype - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/exception/DataAccessException.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[59,54] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[38,42] cannot find symbol
[ERROR] symbol: class PostgresDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,26] cannot find symbol
[ERROR] symbol: class JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[15,21] cannot access org.jooq.impl.DSL
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/impl/DSL.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[40,43] cannot find symbol
[ERROR] symbol: variable JooqLogger
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[109,17] cannot find symbol
[ERROR] symbol: method setConnection(java.sql.Connection)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase + +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[97,40] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[118,5] method does not override or implement a method from a supertype * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[84,60] cannot find symbol
[ERROR] symbol: method getBasedir()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[88,47] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
[ERROR] symbol: method getProperties()
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[13,16] cannot access org.jooq.SQLDialect
bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/SQLDialect.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[17,22] cannot access org.jooq.tools.JooqLogger
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/tools/JooqLogger.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[61,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[16,30] cannot access org.jooq.meta.postgres.PostgresDatabase
bad class file: /root/.m2/repository/org/jooq/jooq-meta/3.17.1/jooq-meta-3.17.1.jar(/org/jooq/meta/postgres/PostgresDatabase.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,1] static import only from classes and interfaces * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[12,16] cannot access org.jooq.DSLContext
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/DSLContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[23,29] cannot access org.jooq.tools.StringUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/tools/StringUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
symbol: class DataAccessException
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[14,26] cannot access org.jooq.exception.DataAccessException
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/exception/DataAccessException.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[49,15] cannot find symbol
[ERROR] symbol: class DSLContext
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[50,40] cannot find symbol
symbol: variable SQLDialect
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[89,21] cannot find symbol
[ERROR] symbol: method isBlank(java.lang.String)
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[120,9] cannot find symbol
[ERROR] symbol: variable JDBCUtils
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase @@ -114,14 +68,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[112,27] cannot find symbol
[ERROR] symbol: class DataAccessException
[ERROR] location: class com.github.sabomichal.jooq.PostgresDDLDatabase -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[98,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - * > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[18,27] cannot access org.jooq.tools.jdbc.JDBCUtils
[ERROR] bad class file: /root/.m2/repository/org/jooq/jooq/3.17.1/jooq-3.17.1.jar(/org/jooq/tools/jdbc/JDBCUtils.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[78,44] cannot find symbol
symbol: method getProperties()
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[79,21] cannot find symbol
symbol: method isBlank(java.lang.String)
location: class com.github.sabomichal.jooq.PostgresDDLDatabase - -* > [ERROR] /jooq-meta-postgres-flyway/src/main/java/com/github/sabomichal/jooq/PostgresDDLDatabase.java:[126,9] cannot find symbol
symbol: variable super
location: class com.github.sabomichal.jooq.PostgresDDLDatabase -
diff --git a/Explanations/f5a34301592bb62474489de79069d7873ffe070e.md b/Explanations/f5a34301592bb62474489de79069d7873ffe070e.md index aabf3c8..04772b3 100644 --- a/Explanations/f5a34301592bb62474489de79069d7873ffe070e.md +++ b/Explanations/f5a34301592bb62474489de79069d7873ffe070e.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.4** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,102 +13,52 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.4/spring-webmvc-6.0.4.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.4/spring-webmvc-6.0.4.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.4/spring-webmvc-6.0.4.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.4/spring-webmvc-6.0.4.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.4/spring-webmvc-6.0.4.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.4/spring-context-6.0.4.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + diff --git a/Explanations/f5dbb3021aa96afc60b38d2b0b01873d3a6f16bd.md b/Explanations/f5dbb3021aa96afc60b38d2b0b01873d3a6f16bd.md index c9a8ff9..2c19caa 100644 --- a/Explanations/f5dbb3021aa96afc60b38d2b0b01873d3a6f16bd.md +++ b/Explanations/f5dbb3021aa96afc60b38d2b0b01873d3a6f16bd.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-webmvc-6.0.8** to **spring-webmvc-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-webmvc-5.3.24** to **spring-webmvc-6.0.8** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -15,93 +15,41 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.8/spring-webmvc-6.0.8.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
[ERROR] symbol: class RequestMappingHandlerMapping
[ERROR] location: class ids.messaging.endpoint.EndpointService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
[ERROR] symbol: class RequestMappingInfo
[ERROR] location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/NotificationTemplateProvider.java:[73,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Controller.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[109,13] cannot find symbol
symbol: class RequestMappingInfo
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
[ERROR] symbol: class Service * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[53,38] cannot access org.springframework.stereotype.Controller
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Controller.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[46,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[57,34] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.8/spring-webmvc-6.0.8.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
symbol: class ApplicationContext
location: class ids.messaging.handler.request.RequestMessageHandlerService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.8/spring-webmvc-6.0.8.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.8/spring-webmvc-6.0.8.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
symbol: class Controller - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[25,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[30,61] cannot access org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping
bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.8/spring-webmvc-6.0.8.jar(/org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerMapping.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/ApplicationContext.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/builder/IdsRequestBuilderService.java:[33,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[35,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[39,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.util.SerializerProvider - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[36,2] cannot find symbol
symbol: class Service - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[44,19] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[38,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[31,2] cannot find symbol
symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/requests/RequestTemplateProvider.java:[58,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[47,13] cannot find symbol
symbol: class RequestMappingHandlerMapping
location: class ids.messaging.endpoint.EndpointService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[61,2] cannot find symbol
[ERROR] symbol: class Controller * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[31,35] cannot access org.springframework.context.ApplicationContext
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/ApplicationContext.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[29,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[64,2] cannot find symbol
[ERROR] symbol: class Service -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.dispatcher.MessageDispatcherProvider +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[29,50] cannot access org.springframework.web.servlet.mvc.method.RequestMappingInfo
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-webmvc/6.0.8/spring-webmvc-6.0.8.jar(/org/springframework/web/servlet/mvc/method/RequestMappingInfo.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[49,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcherProvider @@ -109,6 +57,8 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[52,47] cannot find symbol
[ERROR] symbol: class ApplicationContext
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/util/SerializerProvider.java:[40,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.util.SerializerProvider + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcherProvider.java:[28,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.8/spring-context-6.0.8.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/fb71d68c62a6b9263ebc5113d97c91535d3106b2.md b/Explanations/fb71d68c62a6b9263ebc5113d97c91535d3106b2.md index 52523b4..0c17aa3 100644 --- a/Explanations/fb71d68c62a6b9263ebc5113d97c91535d3106b2.md +++ b/Explanations/fb71d68c62a6b9263ebc5113d97c91535d3106b2.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-core-6.0.2** to **spring-core-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-core-5.3.24** to **spring-core-6.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,8 +11,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/io/ClassPathResource.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ssl/keystore/KeyStoreManager.java:[61,35] cannot access org.springframework.core.io.ClassPathResource
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-core/6.0.2/spring-core-6.0.2.jar(/org/springframework/core/io/ClassPathResource.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath.
diff --git a/Explanations/fe31c5e11259881e9dce66d325d1b8b8ed8afc81.md b/Explanations/fe31c5e11259881e9dce66d325d1b8b8ed8afc81.md index 0e302fa..e18c4e6 100644 --- a/Explanations/fe31c5e11259881e9dce66d325d1b8b8ed8afc81.md +++ b/Explanations/fe31c5e11259881e9dce66d325d1b8b8ed8afc81.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-boot-starter-3.0.4** to **spring-boot-starter-2.7.5** has failed. +CI detected that the dependency upgrade from version **spring-boot-starter-2.7.5** to **spring-boot-starter-3.0.4** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,6 +13,10 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
[ERROR] symbol: class Service @@ -23,113 +27,39 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.4/spring-boot-3.0.4.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
symbol: class Validated - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.4/spring-boot-3.0.4.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.4/spring-boot-autoconfigure-3.0.4.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.4/spring-boot-autoconfigure-3.0.4.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.4/spring-boot-autoconfigure-3.0.4.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
symbol: class Configuration - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.4/spring-boot-autoconfigure-3.0.4.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
[ERROR] symbol: class Component * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/validation/annotation/Validated.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.4/spring-boot-3.0.4.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
symbol: class ConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.4/spring-boot-3.0.4.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
symbol: class EnableConfigurationProperties +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.4/spring-boot-3.0.4.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.6/spring-context-6.0.6.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -137,9 +67,9 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService @@ -147,4 +77,6 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
[ERROR] symbol: class Service +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.6/spring-beans-6.0.6.jar(/org/springframework/beans/factory/annotation/Autowired.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + diff --git a/Explanations/fe57fca108ccd8ea9b98666075fbc3237874c314.md b/Explanations/fe57fca108ccd8ea9b98666075fbc3237874c314.md index 29ea655..6f5ec9b 100644 --- a/Explanations/fe57fca108ccd8ea9b98666075fbc3237874c314.md +++ b/Explanations/fe57fca108ccd8ea9b98666075fbc3237874c314.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-web-6.0.2** to **spring-web-5.3.24** has failed. +CI detected that the dependency upgrade from version **spring-web-5.3.24** to **spring-web-6.0.2** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -13,14 +13,12 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/HttpEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
[ERROR] symbol: class ResponseEntity
[ERROR] location: class ids.messaging.endpoint.MessageController * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,38] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse @@ -29,82 +27,36 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/ResponseEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.dispatcher.MessageDispatcher -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController + * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
[ERROR] symbol: class MediaType
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.handler.request.RequestMessageHandlerService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.MessageController -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[103,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.protocol.MessageService - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/handler/request/RequestMessageHandlerService.java:[51,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.handler.request.RequestMessageHandlerService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/HttpHeaders.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[120,12] cannot find symbol
symbol: class ResponseEntity
location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/dispatcher/MessageDispatcher.java:[59,6] cannot find symbol
symbol: class Value
location: class ids.messaging.dispatcher.MessageDispatcher - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[38,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[102,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.protocol.http.IdsHttpService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.endpoint.MessageController - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[52,32] cannot access org.springframework.http.ResponseEntity
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/ResponseEntity.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[66,81] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[95,52] cannot find symbol
symbol: class MediaType
location: class ids.messaging.response.Base64EncodedFileBodyResponse - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.endpoint.EndpointService - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[35,32] cannot access org.springframework.http.HttpEntity
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/HttpEntity.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[55,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.endpoint.EndpointService -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/HttpStatus.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[36,32] cannot access org.springframework.http.HttpHeaders
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/HttpHeaders.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[96,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/MessageService.java:[75,6] cannot find symbol
[ERROR] symbol: class Autowired
[ERROR] location: class ids.messaging.protocol.MessageService * > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
[ERROR] symbol: class HttpEntity
[ERROR] location: class ids.messaging.response.Base64EncodedFileBodyResponse -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/response/Base64EncodedFileBodyResponse.java:[54,19] cannot find symbol
symbol: class HttpEntity
location: class ids.messaging.response.Base64EncodedFileBodyResponse +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[57,52] cannot access org.springframework.beans.factory.annotation.Value
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.2/spring-beans-6.0.2.jar(/org/springframework/beans/factory/annotation/Value.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[94,6] cannot find symbol
symbol: class Value
location: class ids.messaging.endpoint.MessageController +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/MessageController.java:[50,32] cannot access org.springframework.http.HttpStatus
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/HttpStatus.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/protocol/http/IdsHttpService.java:[108,6] cannot find symbol
symbol: class Value
location: class ids.messaging.protocol.http.IdsHttpService +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[28,47] cannot access org.springframework.web.bind.annotation.RequestMethod
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/web/bind/annotation/RequestMethod.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/MediaType.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/messaging/src/main/java/ids/messaging/endpoint/EndpointService.java:[26,32] cannot access org.springframework.http.MediaType
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-web/6.0.2/spring-web-6.0.2.jar(/org/springframework/http/MediaType.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. diff --git a/Explanations/fe8646eae5d5f81a733be6cbf8f3a308c604e8ec.md b/Explanations/fe8646eae5d5f81a733be6cbf8f3a308c604e8ec.md index cc72c9e..2592fb6 100644 --- a/Explanations/fe8646eae5d5f81a733be6cbf8f3a308c604e8ec.md +++ b/Explanations/fe8646eae5d5f81a733be6cbf8f3a308c604e8ec.md @@ -1,4 +1,4 @@ -CI detected that the dependency upgrade from version **spring-boot-starter-3.0.1** to **spring-boot-starter-2.7.5** has failed. +CI detected that the dependency upgrade from version **spring-boot-starter-2.7.5** to **spring-boot-starter-3.0.1** has failed. The new version of the dependency require a different version of Java. CI uses **Java 11** (class version **55.0**). The new version of the dependency requires **Java 17** (class version **61.0**). @@ -11,16 +11,14 @@ To resolve this issue, you need to update the Java version to **Java 17** in the
Here you can find a list of failures identified from the logs generated in the build process -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Configuration.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Component.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.1/spring-boot-autoconfigure-3.0.1.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.1/spring-boot-autoconfigure-3.0.1.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[40,46] cannot access org.springframework.context.annotation.Configuration
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Configuration.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty + * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
[ERROR] symbol: class Service @@ -29,28 +27,28 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
[ERROR] symbol: class ConfigurationProperties -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Service.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. + +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[38,38] cannot access org.springframework.stereotype.Service
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Service.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.1/spring-boot-autoconfigure-3.0.1.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
symbol: class Component +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
[ERROR] symbol: class Component -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.TokenProviderService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
symbol: class Validated - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Bean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[37,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.1/spring-boot-autoconfigure-3.0.1.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnMissingBean.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. @@ -65,86 +63,20 @@ To resolve this issue, you need to update the Java version to **Java 17** in the * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[45,2] cannot find symbol
symbol: class Service - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.1/spring-boot-3.0.1.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
symbol: class Bean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[82,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.1/spring-boot-3.0.1.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/validation/annotation/Validated.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
symbol: class Service +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
[ERROR] symbol: class EnableConfigurationProperties * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[199,6] cannot find symbol
[ERROR] symbol: class ConditionalOnMissingBean
[ERROR] location: class ids.messaging.core.config.ConfigProducer -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.1/spring-boot-autoconfigure-3.0.1.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[209,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[37,52] cannot access org.springframework.beans.factory.annotation.Value
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.3/spring-beans-6.0.3.jar(/org/springframework/beans/factory/annotation/Value.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
symbol: class Configuration - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[34,2] cannot find symbol
[ERROR] symbol: class Validated - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[198,6] cannot find symbol
[ERROR] symbol: class Bean
[ERROR] location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[88,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[36,52] cannot access org.springframework.beans.factory.annotation.Autowired
bad class file: /root/.m2/repository/org/springframework/spring-beans/6.0.3/spring-beans-6.0.3.jar(/org/springframework/beans/factory/annotation/Autowired.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[66,38] cannot access org.springframework.stereotype.Component
[ERROR] bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/stereotype/Component.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[58,2] cannot find symbol
[ERROR] symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[48,2] cannot find symbol
[ERROR] symbol: class Configuration - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[65,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.1/spring-boot-autoconfigure-3.0.1.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnProperty.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[72,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[50,2] cannot find symbol
[ERROR] symbol: class ConditionalOnClass - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/orbiter/OrbiterTokenManagerService.java:[74,2] cannot find symbol
symbol: class ConditionalOnProperty - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[210,6] cannot find symbol
symbol: class ConditionalOnMissingBean
location: class ids.messaging.core.config.ConfigProducer - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[35,2] cannot find symbol
symbol: class ConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[24,51] cannot access org.springframework.boot.context.properties.ConfigurationProperties
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.1/spring-boot-3.0.1.jar(/org/springframework/boot/context/properties/ConfigurationProperties.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[76,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[49,2] cannot find symbol
symbol: class EnableConfigurationProperties - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[97,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[56,2] cannot find symbol
[ERROR] symbol: class Component - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/TokenProviderService.java:[97,6] cannot find symbol
symbol: class Autowired
location: class ids.messaging.core.daps.TokenProviderService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[38,51] cannot access org.springframework.boot.context.properties.EnableConfigurationProperties
bad class file: /root/.m2/repository/org/springframework/boot/spring-boot/3.0.1/spring-boot-3.0.1.jar(/org/springframework/boot/context/properties/EnableConfigurationProperties.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[74,6] cannot find symbol
symbol: class Value
location: class ids.messaging.core.daps.aisec.AisecTokenManagerService - -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[39,46] cannot access org.springframework.context.annotation.Bean
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/context/annotation/Bean.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/aisec/AisecTokenManagerService.java:[90,6] cannot find symbol
[ERROR] symbol: class Value
[ERROR] location: class ids.messaging.core.daps.aisec.AisecTokenManagerService -* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProperties.java:[25,49] cannot access org.springframework.validation.annotation.Validated
bad class file: /root/.m2/repository/org/springframework/spring-context/6.0.3/spring-context-6.0.3.jar(/org/springframework/validation/annotation/Validated.class)
class file has wrong version 61.0, should be 55.0
Please remove or make sure it appears in the correct subdirectory of the classpath. - * > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/daps/DapsValidator.java:[40,2] cannot find symbol
[ERROR] symbol: class Service +* > [ERROR] /IDS-Messaging-Services/core/src/main/java/ids/messaging/core/config/ConfigProducer.java:[36,56] cannot access org.springframework.boot.autoconfigure.condition.ConditionalOnClass
[ERROR] bad class file: /root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.0.1/spring-boot-autoconfigure-3.0.1.jar(/org/springframework/boot/autoconfigure/condition/ConditionalOnClass.class)
[ERROR] class file has wrong version 61.0, should be 55.0
[ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. +
From 82eaa59f0007f7381ddf2a3e00bbfe66d521a705 Mon Sep 17 00:00:00 2001 From: Frank Reyes Date: Mon, 24 Jun 2024 13:49:02 +0200 Subject: [PATCH 3/3] Updating project --- ...8f92ff37d1aed054d8320283fd6d6a492703a55.md | 91 +++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 Explanations/b8f92ff37d1aed054d8320283fd6d6a492703a55.md diff --git a/Explanations/b8f92ff37d1aed054d8320283fd6d6a492703a55.md b/Explanations/b8f92ff37d1aed054d8320283fd6d6a492703a55.md new file mode 100644 index 0000000..49fce7c --- /dev/null +++ b/Explanations/b8f92ff37d1aed054d8320283fd6d6a492703a55.md @@ -0,0 +1,91 @@ +CI detected that the dependency upgrade from version **maven-surefire-common-3.0.0-M5** to **maven-surefire-common-3.0.0-M7** has failed. Here are details to help you understand and fix the problem: + +Your code depends on indirect dependency **surefire-api** which has been updated from version **3.0.0-M5** to **3.0.0-M7**. The new version of the indirect dependency has introduced breaking changes which are causing the build to fail. +1. Your client utilizes **5** constructs which has been modified in the new version of the dependency. + *
+ Method getWildcard() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /flacoco/src/main/java/fr/spoonlabs/flacoco/core/test/strategies/classloader/finder/classes/impl/SourceFolderFinder.java:[25,97] cannot find symbol
     symbol: method getWildcard() + location: class org.apache.maven.surefire.api.testset.TestListResolver +](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1073) + * An error was detected in line 25 which is making use of an outdated API. + ``` java + 25 org.apache.maven.surefire.api.testset.TestListResolver.getWildcard(); + ``` + +
+ +
+ *
+ Method getWildcard() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /flacoco/src/main/java/fr/spoonlabs/flacoco/core/coverage/framework/TestFrameworkStrategy.java:[92,119] cannot find symbol
     symbol: method getWildcard() + location: class org.apache.maven.surefire.api.testset.TestListResolver +](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1076) + * An error was detected in line 92 which is making use of an outdated API. + ``` java + 92 org.apache.maven.surefire.api.testset.TestListResolver.getWildcard(); + ``` + +
+ +
+ *
+ Method getWildcard() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /flacoco/src/main/java/fr/spoonlabs/flacoco/core/coverage/framework/TestFrameworkStrategy.java:[97,127] cannot find symbol
     symbol: method getWildcard() + location: class org.apache.maven.surefire.api.testset.TestListResolver +](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1077) + * An error was detected in line 97 which is making use of an outdated API. + ``` java + 97 org.apache.maven.surefire.api.testset.TestListResolver.getWildcard(); + ``` + +
+ +
+ *
+ Method getWildcard() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /flacoco/src/main/java/fr/spoonlabs/flacoco/core/coverage/CoverageMatrix.java:[205,101] cannot find symbol
     symbol: method getWildcard() + location: class org.apache.maven.surefire.api.testset.TestListResolver +](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1075) + * An error was detected in line 205 which is making use of an outdated API. + ``` java + 205 org.apache.maven.surefire.api.testset.TestListResolver.getWildcard(); + ``` + +
+ +
+ *
+ Method getWildcard() which has been removed in the new version of the dependency + + *
+ The failure is identified from the logs generated in the build process. + + * >[[ERROR] /flacoco/src/main/java/fr/spoonlabs/flacoco/core/coverage/CoverageMatrix.java:[199,101] cannot find symbol
     symbol: method getWildcard() + location: class org.apache.maven.surefire.api.testset.TestListResolver +](https://github.com/chains-project/breaking-good/actions/runs/8110103454/job/22166641300#step:4:1074) + * An error was detected in line 199 which is making use of an outdated API. + ``` java + 199 org.apache.maven.surefire.api.testset.TestListResolver.getWildcard(); + ``` + +
+ +
+ +