gsonpath.GsonProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gsonpath-compiler Show documentation
Show all versions of gsonpath-compiler Show documentation
An annotation processor which generates Type Adapters for the Google Gson library
package gsonpath;
import com.google.auto.service.AutoService;
import javax.annotation.processing.Processor;
/**
* Note: Autoservice does not seem to work when using a kotlin class, therefore we
* expose this empty java class to appease the library.
*/
@AutoService(Processor.class)
public class GsonProcessor extends GsonProcessorImpl {
}