mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-10-21 19:17:39 +08:00
🎨 优化GraalProcessor代码
This commit is contained in:
@@ -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
|
@@ -1 +1 @@
|
||||
cn.binarywang.wx.graal.GraalProcessor
|
||||
com.github.binarywang.wx.graal.GraalProcessor
|
||||
|
Reference in New Issue
Block a user