
org.gradle.api.internal.GradleInternal 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 2009 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;
import org.gradle.BuildListener;
import org.gradle.api.Action;
import org.gradle.api.ProjectEvaluationListener;
import org.gradle.api.initialization.IncludedBuild;
import org.gradle.api.internal.initialization.ClassLoaderScope;
import org.gradle.api.internal.project.ProjectInternal;
import org.gradle.api.internal.tasks.cache.config.TaskCachingInternal;
import org.gradle.api.invocation.Gradle;
import org.gradle.api.tasks.TaskCaching;
import org.gradle.execution.TaskGraphExecuter;
import org.gradle.internal.service.ServiceRegistry;
import org.gradle.internal.service.scopes.ServiceRegistryFactory;
import java.util.Collection;
/**
* An internal interface for Gradle that exposed objects and concepts that are not intended for public
* consumption.
*/
public interface GradleInternal extends Gradle {
/**
* {@inheritDoc}
*/
ProjectInternal getRootProject();
/**
* {@inheritDoc}
*/
TaskGraphExecuter getTaskGraph();
/**
* Returns the default project. This is used to resolve relative names and paths provided on the UI.
*/
ProjectInternal getDefaultProject();
/**
* Returns the broadcaster for {@link ProjectEvaluationListener} events for this build
*/
ProjectEvaluationListener getProjectEvaluationBroadcaster();
/**
* Called by the BuildLoader after the default project is determined. Until the BuildLoader
* is executed, {@link #getDefaultProject()} will return null.
* @param defaultProject The default project for this build.
*/
void setDefaultProject(ProjectInternal defaultProject);
/**
* Called by the BuildLoader after the root project is determined. Until the BuildLoader
* is executed, {@link #getRootProject()} will return null.
@param rootProject The root project for this build.
*/
void setRootProject(ProjectInternal rootProject);
/**
* Returns the broadcaster for {@link BuildListener} events
*/
BuildListener getBuildListenerBroadcaster();
ServiceRegistry getServices();
ServiceRegistryFactory getServiceRegistryFactory();
ClassLoaderScope getClassLoaderScope();
/**
* Configures task output caching.
*/
void taskCaching(Action super TaskCaching> action);
/**
* Returns the task output caching configuration.
*/
TaskCachingInternal getTaskCaching();
void setIncludedBuilds(Collection includedBuilds);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy