Class AbstractAvroMojo

java.lang.Object
org.apache.maven.plugin.AbstractMojo
org.apache.avro.mojo.AbstractAvroMojo
All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
Direct Known Subclasses:
IDLMojo, ProtocolMojo, SchemaMojo

public abstract class AbstractAvroMojo extends org.apache.maven.plugin.AbstractMojo
Base for Avro Compiler Mojos.
  • Field Details Link icon

    • imports Link icon

      protected String[] imports
      A list of files or directories that should be compiled first thus making them importable by subsequently compiled schemas. Note that imported files should not reference each other.
    • excludes Link icon

      protected String[] excludes
      A set of Ant-like exclusion patterns used to prevent certain files from being processed. By default, this set is empty such that no files are excluded.
    • testExcludes Link icon

      protected String[] testExcludes
      A set of Ant-like exclusion patterns used to prevent certain files from being processed. By default, this set is empty such that no files are excluded.
    • stringType Link icon

      protected String stringType
      The Java type to use for Avro strings. May be one of CharSequence, String or Utf8. CharSequence by default.
    • templateDirectory Link icon

      protected String templateDirectory
      The directory (within the java classpath) that contains the velocity templates to use for code generation. The default value points to the templates included with the avro-maven-plugin.
    • velocityToolsClassesNames Link icon

      protected String[] velocityToolsClassesNames
      The qualified names of classes which the plugin will look up, instantiate (through an empty constructor that must exist) and set up to be injected into Velocity templates by Avro compiler.
    • createOptionalGetters Link icon

      protected boolean createOptionalGetters
      The createOptionalGetters parameter enables generating the getOptional... methods that return an Optional of the requested type. This works ONLY on Java 8+
    • gettersReturnOptional Link icon

      protected boolean gettersReturnOptional
      The gettersReturnOptional parameter enables generating get... methods that return an Optional of the requested type. This works ONLY on Java 8+
    • optionalGettersForNullableFieldsOnly Link icon

      protected boolean optionalGettersForNullableFieldsOnly
      The optionalGettersForNullableFieldsOnly parameter works in conjunction with gettersReturnOptional option. If it is set, Optional getters will be generated only for fields that are nullable. If the field is mandatory, regular getter will be generated. This works ONLY on Java 8+.
    • createSetters Link icon

      protected boolean createSetters
      Determines whether or not to create setters for the fields of the record. The default is to create setters.
    • createNullSafeAnnotations Link icon

      protected boolean createNullSafeAnnotations
      The createNullSafeAnnotations parameter adds JetBrains @Nullable and @NotNull annotations for fhe fields of the record. The default is to not include annotations.
      See Also:
    • customConversions Link icon

      protected String[] customConversions
      A set of fully qualified class names of custom Conversion implementations to add to the compiler. The classes must be on the classpath at compile time and whenever the Java objects are serialized.
    • customLogicalTypeFactories Link icon

      protected String[] customLogicalTypeFactories
      A set of fully qualified class names of custom LogicalTypes.LogicalTypeFactory implementations to add to the compiler. The classes must be on the classpath at compile time and whenever the Java objects are serialized.
    • enableDecimalLogicalType Link icon

      protected boolean enableDecimalLogicalType
      Determines whether or not to use Java classes for decimal types
    • project Link icon

      protected org.apache.maven.project.MavenProject project
      The current Maven project.
  • Constructor Details Link icon

    • AbstractAvroMojo Link icon

      public AbstractAvroMojo()
  • Method Details Link icon

    • execute Link icon

      public void execute() throws org.apache.maven.plugin.MojoExecutionException
      Throws:
      org.apache.maven.plugin.MojoExecutionException
    • getFieldVisibility Link icon

      protected SpecificCompiler.FieldVisibility getFieldVisibility()
    • instantiateAdditionalVelocityTools Link icon

      protected List<Object> instantiateAdditionalVelocityTools()
    • doCompile Link icon

      protected void doCompile(String[] files, File sourceDirectory, File outputDirectory) throws org.apache.maven.plugin.MojoExecutionException
      Throws:
      org.apache.maven.plugin.MojoExecutionException
    • doCompile Link icon

      protected void doCompile(String filename, File sourceDirectory, File outputDirectory) throws IOException
      Throws:
      IOException
    • doCompile Link icon

      protected void doCompile(File sourceFileForModificationDetection, Collection<Schema> schemas, File outputDirectory) throws IOException
      Throws:
      IOException
    • doCompile Link icon

      protected void doCompile(File sourceFileForModificationDetection, Protocol protocol, File outputDirectory) throws IOException
      Throws:
      IOException
    • findClasspath Link icon

      protected List<URL> findClasspath() throws org.apache.maven.artifact.DependencyResolutionRequiredException, MalformedURLException
      Throws:
      org.apache.maven.artifact.DependencyResolutionRequiredException
      MalformedURLException
    • createClassLoader Link icon

      protected URLClassLoader createClassLoader() throws org.apache.maven.artifact.DependencyResolutionRequiredException, MalformedURLException
      Throws:
      org.apache.maven.artifact.DependencyResolutionRequiredException
      MalformedURLException
    • getIncludes Link icon

      protected abstract String[] getIncludes()
    • getTestIncludes Link icon

      protected abstract String[] getTestIncludes()