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

org.apache.karaf.tooling.features.DependencyHelper Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.apache.karaf.tooling.features;

import java.io.File;
import java.util.Map;

import org.apache.maven.artifact.Artifact;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.project.MavenProject;

/**
 * 

An interface for accessing available Aether subsystem (Sonatype for Maven 3.0.x or Eclipse for Maven 3.1.x)

* *

Some methods have {@link Object} parameters because they should be able to receive Aether classes from * both Aether variants.

*/ public interface DependencyHelper { public abstract Map getLocalDependencies(); public abstract String getTreeListing(); public abstract void getDependencies(MavenProject project, boolean useTransitiveDependencies) throws MojoExecutionException; public boolean isArtifactAFeature(Object artifact); public abstract String getArtifactId(Object artifact); public abstract String getClassifier(Object artifact); public abstract File resolve(Object artifact, Log log); public abstract File resolveById(String id, Log log) throws MojoFailureException; /** * Convert a Maven Artifact into a PAX URL mvn format. * * @param artifact the Maven Artifact. * @return the corresponding PAX URL mvn format (mvn:groupId/artifactId/version/type/classifier) */ public String artifactToMvn(Artifact artifact) throws MojoExecutionException; /** * Convert an Aether (Sonatype or Eclipse) artifact into a PAX URL mvn format. * * @param object the Aether org.sonatype|eclipse.aether.artifact.Artifact. * @return the corresponding PAX URL mvn format (mvn:groupId/artifactId/version/type/classifier) */ public String artifactToMvn(Object object) throws MojoExecutionException; public Artifact mvnToArtifact(String name) throws MojoExecutionException; /** * Convert a PAX URL mvn format into a filesystem path. * * @param name PAX URL mvn format (mvn:groupId/artifactId/version/type/classifier). * @return a filesystem path. */ public String pathFromMaven(String name) throws MojoExecutionException; /** * Convert an Aether coordinate format into a filesystem path. * * @param name the Aether coordinate format (groupId:artifactId[:extension[:classifier]]:version). * @return the filesystem path. */ public String pathFromAether(String name) throws MojoExecutionException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy