sergey-chugunov-1985 commented on code in PR #12214: URL: https://github.com/apache/ignite/pull/12214#discussion_r2227639623
########## modules/compatibility/src/test/java/org/apache/ignite/compatibility/testframework/junits/IgniteCompatibilityAbstractTest.java: ########## @@ -288,7 +288,11 @@ protected Set<String> getExcluded(String ver, Collection<Dependency> dependencie excluded.add("indexing"); // Exclude all modules necessary to compile the current version of core module to avoid conflicts with previous versions. - excluded.addAll(Set.of("binary", "codegen2", "commons", "unsafe")); + // When building with TeamCity, JAR files named according to their artifact IDs are added to the classpath. + excluded.addAll(Set.of("ignite-binary-api", "ignite-binary-impl", "ignite-commons", "ignite-grid-unsafe")); Review Comment: Why `codegen2` disappered from excluded list? Don't we want to add it to this new naming model? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org