in tools/javac/SourceGenerator.java [39:47]
public SourceGenerator(ProcessingEnvironment processingEnv) {
this.processingEnv = processingEnv;
try {
jbrTemplate = Files.readString(Path.of("tools/templates/JBR.java"));
serviceGetterTemplate = Files.readString(Path.of("tools/templates/service-getter.txt"));
} catch (IOException e) {
throw new RuntimeException(e);
}
}