com.michaelhradek.aurkitu.Config Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aurkitu-maven-plugin Show documentation
Show all versions of aurkitu-maven-plugin Show documentation
Maven plugin for parsing annotated code into IDL formatted schema files.
package com.michaelhradek.aurkitu;
/**
* @author m.hradek
*
*/
public final class Config {
/**
* Only use on your local dev box.
*/
public static final boolean DEBUG = false;
/**
*
*/
public static final String FILE_EXTENSION = "fbs";
/**
* At the top of all generated schema files
*/
public static final String SCHEMA_INTRO_COMMENT =
"// Aurkitu automatically generated IDL FlatBuffer Schema";
/**
* Optional which includes a {@link String#hashCode()} of the contents of the schema file.
*/
public static final String SCHEMA_VERSION_COMMENT =
"// @version: " + Config.SCHEMA_VERSION_PLACEHOLDER;
/**
* The placeholder for the optional version line specified at
* {@link Config#SCHEMA_VERSION_COMMENT}
*/
public static final String SCHEMA_VERSION_PLACEHOLDER = "AURKITU-SCHEMA-VERSION-ghjtyu567FHGFD";
}