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

org.wildfly.swarm.arquillian.adapter.MavenProfileLoader Maven / Gradle / Ivy

There is a newer version: 2.7.0.Final
Show newest version
/**
 * Copyright 2015-2016 Red Hat, Inc, and individual contributors.
 *
 * 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 org.wildfly.swarm.arquillian.adapter;

import java.util.Optional;

import org.jboss.shrinkwrap.resolver.api.maven.ConfigurableMavenResolverSystem;
import org.jboss.shrinkwrap.resolver.api.maven.PomEquippedResolveStage;
import org.wildfly.swarm.internal.FileSystemLayout;
import org.wildfly.swarm.internal.MavenArgsParser;

/**
 * @author Ken Finnigan
 */
public final class MavenProfileLoader {

    public static final String ENV_MAVEN_CMD_LINE_ARGS = "env.MAVEN_CMD_LINE_ARGS";
    private static String[] profiles = new String[0];

    private static boolean profilesDiscovered = false;

    private MavenProfileLoader() {
    }

    public static PomEquippedResolveStage loadPom(ConfigurableMavenResolverSystem resolver) {
        return resolver.loadPomFromFile(FileSystemLayout.resolveMavenBuildFileName(), determineProfiles());
    }

    public static String[] determineProfiles() {
        if (!profilesDiscovered) {
            String commandLine = System.getProperty(ENV_MAVEN_CMD_LINE_ARGS);

            if (commandLine != null) {
                MavenArgsParser args = MavenArgsParser.parse(commandLine);
                Optional p_arg = args.get(MavenArgsParser.ARG.P);
                if (p_arg.isPresent()) {
                    profiles = p_arg.get().split(",");
                }
                profilesDiscovered = true;
            }
        }

        return profiles;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy