org.gradle.language.base.plugins.LifecycleBasePlugin 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 2014 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.language.base.plugins;
import org.gradle.api.Action;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.gradle.api.Task;
import org.gradle.api.file.FileCollection;
import org.gradle.api.internal.project.ProjectInternal;
import org.gradle.api.provider.Provider;
import org.gradle.api.tasks.Delete;
import org.gradle.internal.cleanup.BuildOutputCleanupRegistry;
import org.gradle.language.base.internal.plugins.CleanRule;
import java.io.File;
import java.util.concurrent.Callable;
/**
* A {@link org.gradle.api.Plugin} which defines a basic project lifecycle.
*/
public class LifecycleBasePlugin implements Plugin {
public static final String CLEAN_TASK_NAME = "clean";
public static final String ASSEMBLE_TASK_NAME = "assemble";
public static final String CHECK_TASK_NAME = "check";
public static final String BUILD_TASK_NAME = "build";
public static final String BUILD_GROUP = "build";
public static final String VERIFICATION_GROUP = "verification";
@Override
public void apply(final Project project) {
final ProjectInternal projectInternal = (ProjectInternal) project;
addClean(projectInternal);
addCleanRule(project);
addAssemble(project);
addCheck(project);
addBuild(project);
}
private void addClean(final ProjectInternal project) {
final Callable buildDir = new Callable() {
public File call() {
return project.getBuildDir();
}
};
// Register at least the project buildDir as a directory to be deleted.
final BuildOutputCleanupRegistry buildOutputCleanupRegistry = project.getServices().get(BuildOutputCleanupRegistry.class);
buildOutputCleanupRegistry.registerOutputs(buildDir);
final Provider clean = project.getTasks().register(CLEAN_TASK_NAME, Delete.class, new Action() {
@Override
public void execute(final Delete cleanTask) {
cleanTask.setDescription("Deletes the build directory.");
cleanTask.setGroup(BUILD_GROUP);
cleanTask.delete(buildDir);
}
});
buildOutputCleanupRegistry.registerOutputs(new Callable() {
@Override
public FileCollection call() {
return clean.get().getTargetFiles();
}
});
}
private void addCleanRule(Project project) {
project.getTasks().addRule(new CleanRule(project.getTasks()));
}
private void addAssemble(Project project) {
project.getTasks().register(ASSEMBLE_TASK_NAME, new Action() {
@Override
public void execute(Task assembleTask) {
assembleTask.setDescription("Assembles the outputs of this project.");
assembleTask.setGroup(BUILD_GROUP);
}
});
}
private void addCheck(Project project) {
project.getTasks().register(CHECK_TASK_NAME, new Action() {
@Override
public void execute(Task checkTask) {
checkTask.setDescription("Runs all checks.");
checkTask.setGroup(VERIFICATION_GROUP);
}
});
}
private void addBuild(final Project project) {
project.getTasks().register(BUILD_TASK_NAME, new Action() {
@Override
public void execute(Task buildTask) {
buildTask.setDescription("Assembles and tests this project.");
buildTask.setGroup(BUILD_GROUP);
buildTask.dependsOn(ASSEMBLE_TASK_NAME);
buildTask.dependsOn(CHECK_TASK_NAME);
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy