blob: f5fc736113733c45f651226c5943784baca33fd5 [file] [log] [blame]
/*
* 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.maven.api.services;
import org.apache.maven.api.ArtifactCoordinate;
import org.apache.maven.api.DependencyCoordinate;
import org.apache.maven.api.Service;
import org.apache.maven.api.Session;
import org.apache.maven.api.annotations.Experimental;
import org.apache.maven.api.annotations.Nonnull;
import org.apache.maven.api.model.Dependency;
import org.apache.maven.api.model.Plugin;
import org.apache.maven.api.model.ReportPlugin;
/**
*
* @since 4.0.0
*/
@Experimental
public interface DependencyCoordinateFactory extends Service {
/**
* Creates a new {@link DependencyCoordinate} object from the request.
*
* @param request the request containing the various data
* @return a new {@link DependencyCoordinate} object
*
* @throws IllegalArgumentException if {@code request} is null or
* if {@code request.getSession()} is null or invalid
*/
@Nonnull
DependencyCoordinate create(@Nonnull DependencyCoordinateFactoryRequest request);
@Nonnull
default DependencyCoordinate create(@Nonnull Session session, @Nonnull ArtifactCoordinate coordinate) {
return create(DependencyCoordinateFactoryRequest.build(session, coordinate));
}
@Nonnull
default DependencyCoordinate create(@Nonnull Session session, @Nonnull org.apache.maven.api.Dependency dependency) {
return create(DependencyCoordinateFactoryRequest.build(session, dependency));
}
@Nonnull
default DependencyCoordinate create(@Nonnull Session session, Dependency dependency) {
return create(DependencyCoordinateFactoryRequest.build(
session,
dependency.getGroupId(),
dependency.getArtifactId(),
dependency.getVersion(),
dependency.getClassifier(),
null,
dependency.getType()));
}
@Nonnull
default DependencyCoordinate create(@Nonnull Session session, Plugin plugin) {
// TODO: hard coded string
return create(DependencyCoordinateFactoryRequest.build(
session, plugin.getGroupId(), plugin.getArtifactId(), plugin.getVersion(), null, null, "maven-plugin"));
}
@Nonnull
default DependencyCoordinate create(@Nonnull Session session, ReportPlugin reportPlugin) {
// TODO: hard coded string
return create(DependencyCoordinateFactoryRequest.build(
session,
reportPlugin.getGroupId(),
reportPlugin.getArtifactId(),
reportPlugin.getVersion(),
null,
null,
"maven-plugin"));
}
}