All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.seedstack.maven.components.inquirer.impl.ConsoleUIInquirer 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 = "fancy")
public class ConsoleUIInquirer extends AbstractInquirer {
    @Requirement(hint = "fancy")
    private Prompter prompter;

    @Override
    protected Prompter getPrompter() {
        return prompter;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy