org.gradle.api.internalDependencyServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2013 the original author or authors.
*
* 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.gradle.api.internal.artifacts;
import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ArtifactSetToFileCollectionFactory;
import org.gradle.api.internal.artifacts.transform.ArtifactTransformListener;
import org.gradle.api.internal.artifacts.transform.DefaultTransformationNodeRegistry;
import org.gradle.api.internal.artifacts.transform.TransformationNodeDependencyResolver;
import org.gradle.api.internal.artifacts.transform.TransformationNodeRegistry;
import org.gradle.internal.event.ListenerManager;
import org.gradle.internal.model.CalculatedValueContainerFactory;
import org.gradle.internal.operations.BuildOperationExecutor;
import org.gradle.internal.service.ServiceRegistration;
import org.gradle.internal.service.scopes.AbstractPluginServiceRegistry;
public class DependencyServices extends AbstractPluginServiceRegistry {
@Override
public void registerGlobalServices(ServiceRegistration registration) {
registration.addProvider(new DependencyManagementGlobalScopeServices());
}
@Override
public void registerGradleUserHomeServices(ServiceRegistration registration) {
registration.addProvider(new DependencyManagementGradleUserHomeScopeServices());
}
@Override
public void registerBuildServices(ServiceRegistration registration) {
registration.addProvider(new DependencyManagementBuildScopeServices());
}
@Override
public void registerBuildSessionServices(ServiceRegistration registration) {
registration.add(ArtifactSetToFileCollectionFactory.class);
}
@Override
public void registerBuildTreeServices(ServiceRegistration registration) {
registration.addProvider(new DependencyManagementBuildTreeScopeServices());
}
@Override
public void registerGradleServices(ServiceRegistration registration) {
registration.addProvider(new DependencyManagementGradleServices());
}
@SuppressWarnings("unused")
private static class DependencyManagementGradleServices {
ArtifactTransformListener createArtifactTransformListener(ListenerManager listenerManager) {
return listenerManager.getBroadcaster(ArtifactTransformListener.class);
}
TransformationNodeRegistry createTransformationNodeRegistry(BuildOperationExecutor buildOperationExecutor, CalculatedValueContainerFactory calculatedValueContainerFactory) {
return new DefaultTransformationNodeRegistry(buildOperationExecutor, calculatedValueContainerFactory);
}
TransformationNodeDependencyResolver createTransformationNodeDependencyResolver() {
return new TransformationNodeDependencyResolver();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy