🎨 优化GraalProcessor代码

This commit is contained in:
Binary Wang
2020-09-24 14:54:54 +08:00
parent 32f72774fe
commit 17583a49a0
8 changed files with 10 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
package cn.binarywang.wx.graal;
package com.github.binarywang.wx.graal;
import lombok.Data;
@@ -26,12 +26,12 @@ import java.util.TreeSet;
* @author outersky
*/
@SupportedAnnotationTypes("lombok.Data")
@SupportedSourceVersion(SourceVersion.RELEASE_7)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class GraalProcessor extends AbstractProcessor {
private static final String REFLECTION_CONFIG_JSON = "reflection-config.json";
private static final String NATIVE_IMAGE_PROPERTIES = "native-image.properties";
private SortedSet<String> classSet = new TreeSet<>();
private final SortedSet<String> classSet = new TreeSet<>();
private String shortestPackageName = null;
@Override

View File

@@ -1 +1 @@
cn.binarywang.wx.graal.GraalProcessor
com.github.binarywang.wx.graal.GraalProcessor