Skip to content

Commit

Permalink
Modifications for unbridged v1.325
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman committed Sep 17, 2024
1 parent f1647b6 commit 94b1a4a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/kohsuke/aot/AotIntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public class AotIntegrationTest {
@Test
public void testIfAllRequiredClassesAreRegisteredForAot() throws IOException {
Stream<String> providedReflectionConfigStreamOfNames = readAotConfigToStreamOfClassNames(
"./target/classes/META-INF/native-image/org.kohsuke/github-api/reflect-config.json");
"./target/classes/META-INF/native-image/org.kohsuke/github-api-unbridged/reflect-config.json");
Stream<String> providedNoReflectStreamOfNames = Files
.lines(Path.of("./target/test-classes/no-reflect-and-serialization-list"));
Stream<String> providedSerializationStreamOfNames = readAotConfigToStreamOfClassNames(
"./target/classes/META-INF/native-image/org.kohsuke/github-api/serialization-config.json");
"./target/classes/META-INF/native-image/org.kohsuke/github-api-unbridged/serialization-config.json");
Stream<String> providedAotConfigClassNamesPart = Stream
.concat(providedSerializationStreamOfNames,
Stream.concat(providedReflectionConfigStreamOfNames, providedNoReflectStreamOfNames))
Expand Down

0 comments on commit 94b1a4a

Please sign in to comment.