Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion avaje-prisms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-prisms-parent</artifactId>
<version>2.0-RC1</version>
<version>2.0-RC2</version>
</parent>
<artifactId>avaje-prisms</artifactId>
<name>avaje-prisms</name>
Expand Down
2 changes: 1 addition & 1 deletion blackbox-test-prism/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-prisms-parent</artifactId>
<version>2.0-RC1</version>
<version>2.0-RC2</version>
</parent>

<artifactId>blackbox-test-prism</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-prisms-parent</artifactId>
<version>2.0-RC1</version>
<version>2.0-RC2</version>
<packaging>pom</packaging>
<name>avaje-prisms-parent</name>
<description>A modular fork of hickory</description>
Expand All @@ -17,7 +17,7 @@
</scm>

<properties>
<project.build.outputTimestamp>2025-12-01T16:13:45Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2025-12-02T05:06:34Z</project.build.outputTimestamp>
<nexus.staging.autoReleaseAfterClose>true</nexus.staging.autoReleaseAfterClose>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion prism-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.avaje</groupId>
<artifactId>avaje-prisms-parent</artifactId>
<version>2.0-RC1</version>
<version>2.0-RC2</version>
</parent>
<name>avaje-prisms-core</name>
<artifactId>avaje-prism-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ public static void write(PrintWriter out, String packageName) {
+ " * @param processingEnv the current annotation processing enviroment\n"
+ " */\n"
+ " public static void init(ProcessingEnvironment processingEnv) {\n"
+ " if(CTX.get() != null) return;\n"
+ " CTX.set(new Ctx(processingEnv));\n"
+ " jdkVersion = processingEnv.getSourceVersion().ordinal();\n"
+ " if (jdkVersion < 11) {\n"
Expand All @@ -133,6 +134,7 @@ public static void write(PrintWriter out, String packageName) {
+ " * @param preview whether preview features are enabled\n"
+ " */\n"
+ " public static void init(Ctx context, int jdkVersion, boolean preview) {\n"
+ " if(CTX.get() != null) return;\n"
+ " CTX.set(context);\n"
+ " APContext.jdkVersion = jdkVersion;\n"
+ " previewEnabled = preview;\n"
Expand Down