Skip to content

Commit

Permalink
update apt processors to java11
Browse files Browse the repository at this point in the history
  • Loading branch information
treblereel committed Jul 3, 2024
1 parent 1a94cfa commit 19f3f9a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import org.kie.j2cl.tools.di.core.internal.step.AfterBurnFactoryStep;

@AutoService(Processor.class)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class AfterBurnFactoryProcessor extends AbstractProcessor {

private static final TreeLogger logger = new PrintWriterTreeLogger();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@


@AutoService(Processor.class)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class ApplicationProcessor extends AbstractProcessor {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import org.kie.j2cl.tools.di.core.internal.step.BeanManagerStep;

@AutoService(Processor.class)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class BeanManagerGeneratorProcessor extends AbstractProcessor {

private IOCContext iocContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.kie.j2cl.tools.processors.generator.resources.GWT3ResourceGenerator;

@AutoService(Processor.class)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
@SupportedAnnotationTypes({
"org.kie.j2cl.tools.processors.annotations.GWT3EntryPoint",
"org.kie.j2cl.tools.processors.annotations.ES6Module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
import java.util.Optional;
import java.util.Set;

@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
public class MyProcessor extends AbstractProcessor {
@Override
public Set<String> getSupportedAnnotationTypes() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
* The J2clAstProcessor emits a single AbstractVisitor class and a Visitor helper class for each
* {@code @Visitable} type.
*/
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedSourceVersion(SourceVersion.RELEASE_11)
@AutoService(Processor.class)
public class J2clAstProcessor extends AbstractProcessor {

Expand Down

0 comments on commit 19f3f9a

Please sign in to comment.