org.seedstack.maven.components.inquirer.impl.BasicInquirer Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2013-2021, The SeedStack authors
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package org.seedstack.maven.components.inquirer.impl;
import org.codehaus.plexus.component.annotations.Component;
import org.codehaus.plexus.component.annotations.Requirement;
import org.seedstack.maven.components.inquirer.Inquirer;
import org.seedstack.maven.components.prompter.Prompter;
@Component(role = Inquirer.class, hint = "basic")
public class BasicInquirer extends AbstractInquirer {
@Requirement(hint = "basic")
private Prompter prompter;
@Override
protected Prompter getPrompter() {
return prompter;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy