org.gradle.testfixtures.ProjectBuilder 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 2010 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.testfixtures;
import org.gradle.api.Project;
import org.gradle.testfixtures.internal.ProjectBuilderImpl;
import java.io.File;
/**
* Creates dummy instances of {@link org.gradle.api.Project} which you can use in testing custom task and plugin
* implementations.
*
* To create a project instance:
*
*
*
* - Create a {@code ProjectBuilder} instance by calling {@link #builder()}.
*
* - Optionally, configure the builder.
*
* - Call {@link #build()} to create the {@code Project} instance.
*
*
*
* You can reuse a builder to create multiple {@code Project} instances.
*
* The {@code ProjectBuilder} implementation bundled with Gradle 3.0 and 3.1 suffers from a
* binary compatibility issue exposed by applying plugins compiled with Gradle 2.7 and earlier.
* Applying those pre-compiled plugins in a ProjectBuilder context will result in a {@link ClassNotFoundException}.
*/
public class ProjectBuilder {
private File projectDir;
private File gradleUserHomeDir;
private String name = "test";
private Project parent;
private final ProjectBuilderImpl impl = new ProjectBuilderImpl();
/**
* An instance should only be created via the {@link #builder()}.
*/
private ProjectBuilder() { }
/**
* Creates a project builder.
*
* @return The builder
*/
public static ProjectBuilder builder() {
return new ProjectBuilder();
}
/**
* Specifies the project directory for the project to build.
*
* @param dir The project directory
* @return The builder
*/
public ProjectBuilder withProjectDir(File dir) {
projectDir = dir;
return this;
}
/**
* Specifies the Gradle user home for the builder. If not set, an empty directory under the project directory
* will be used.
*
* @return The builder
*/
public ProjectBuilder withGradleUserHomeDir(File dir) {
gradleUserHomeDir = dir;
return this;
}
/**
* Specifies the name for the project
*
* @param name project name
* @return The builder
*/
public ProjectBuilder withName(String name) {
this.name = name;
return this;
}
/**
* Specifies the parent project. Use it to create multi-module projects.
*
* @param parent parent project
* @return The builder
*/
public ProjectBuilder withParent(Project parent) {
this.parent = parent;
return this;
}
/**
* Creates the project.
*
* @return The project
*/
public Project build() {
if (parent != null) {
return impl.createChildProject(name, parent, projectDir);
}
return impl.createProject(name, projectDir, gradleUserHomeDir);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy