com.jayway.maven.plugins.android.config.ConfigPojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-maven-plugin Show documentation
Show all versions of android-maven-plugin Show documentation
Maven Plugin for Android Development
package com.jayway.maven.plugins.android.config;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* ConfigPojo is an annotation identifying a pojo as a configuration holder for ConfigHandler.
*
* @see ConfigHandler
*
* @author Adrian Stabiszewski https://github.com/grundid/
* @author Manfred Moser
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface ConfigPojo {
}