t3.plugin.annotations.GlobalParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of t3-common Show documentation
Show all versions of t3-common Show documentation
Utility classes for T³ projects
The newest version!
/**
* (C) Copyright 2016-2019 teecube
* (https://teecu.be) and others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package t3.plugin.annotations;
import java.lang.annotation.*;
/**
*
* This annotation is used to add a global parameter to one or several Mojos.
*
*
* @author Mathieu Debove <[email protected]>
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.FIELD } )
@Inherited
public @interface GlobalParameter {
String property();
String defaultValue() default "";
boolean required() default false;
String description() default "";
String category() default "";
boolean valueGuessedByDefault() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy