spring security GitHubMilestonePlugin 源码

  • 2022-08-13
  • 浏览 (340)

spring security GitHubMilestonePlugin 代码

文件路径:/buildSrc/src/main/java/org/springframework/gradle/github/milestones/GitHubMilestonePlugin.java

/*
 * Copyright 2019-2022 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
 *
 *      https://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.springframework.gradle.github.milestones;

import org.gradle.api.Action;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
import org.gradle.api.tasks.TaskProvider;

import org.springframework.gradle.github.RepositoryRef;

public class GitHubMilestonePlugin implements Plugin<Project> {
	@Override
	public void apply(Project project) {
		TaskProvider<GitHubMilestoneNextReleaseTask> nextReleaseMilestoneTask = project.getTasks().register("gitHubNextReleaseMilestone", GitHubMilestoneNextReleaseTask.class, (gitHubMilestoneNextReleaseTask) -> {
			gitHubMilestoneNextReleaseTask.doNotTrackState("API call to GitHub needs to check for new milestones every time");
			gitHubMilestoneNextReleaseTask.setGroup("Release");
			gitHubMilestoneNextReleaseTask.setDescription("Calculates the next release version based on the current version and outputs it to a yaml file");
			gitHubMilestoneNextReleaseTask.getNextReleaseFile()
					.fileProvider(project.provider(() -> project.file("next-release.yml")));
			if (project.hasProperty("gitHubAccessToken")) {
				gitHubMilestoneNextReleaseTask
						.setGitHubAccessToken((String) project.findProperty("gitHubAccessToken"));
			}
		});
		project.getTasks().register("gitHubCheckMilestoneHasNoOpenIssues", GitHubMilestoneHasNoOpenIssuesTask.class, (githubCheckMilestoneHasNoOpenIssues) -> {
			githubCheckMilestoneHasNoOpenIssues.setGroup("Release");
			githubCheckMilestoneHasNoOpenIssues.setDescription("Checks if there are any open issues for the specified repository and milestone");
			githubCheckMilestoneHasNoOpenIssues.getIsOpenIssuesFile().value(project.getLayout().getBuildDirectory().file("github/milestones/is-open-issues"));
			githubCheckMilestoneHasNoOpenIssues.setMilestoneTitle((String) project.findProperty("nextVersion"));
			if (!project.hasProperty("nextVersion")) {
				githubCheckMilestoneHasNoOpenIssues.getNextVersionFile().convention(
						nextReleaseMilestoneTask.flatMap(GitHubMilestoneNextReleaseTask::getNextReleaseFile));
			}
			if (project.hasProperty("gitHubAccessToken")) {
				githubCheckMilestoneHasNoOpenIssues.setGitHubAccessToken((String) project.findProperty("gitHubAccessToken"));
			}
		});
		project.getTasks().register("gitHubCheckNextVersionDueToday", GitHubMilestoneNextVersionDueTodayTask.class, (gitHubMilestoneNextVersionDueTodayTask) -> {
			gitHubMilestoneNextVersionDueTodayTask.setGroup("Release");
			gitHubMilestoneNextVersionDueTodayTask.setDescription("Checks if the next release version is due today or past due, will fail if the next version is not due yet");
			gitHubMilestoneNextVersionDueTodayTask.getIsDueTodayFile().value(project.getLayout().getBuildDirectory().file("github/milestones/is-due-today"));
			gitHubMilestoneNextVersionDueTodayTask.getNextVersionFile().convention(
					nextReleaseMilestoneTask.flatMap(GitHubMilestoneNextReleaseTask::getNextReleaseFile));
			if (project.hasProperty("gitHubAccessToken")) {
				gitHubMilestoneNextVersionDueTodayTask
						.setGitHubAccessToken((String) project.findProperty("gitHubAccessToken"));
			}
		});
		project.getTasks().register("scheduleNextRelease", ScheduleNextReleaseTask.class, (scheduleNextRelease) -> {
			scheduleNextRelease.doNotTrackState("API call to GitHub needs to check for new milestones every time");
			scheduleNextRelease.setGroup("Release");
			scheduleNextRelease.setDescription("Schedule the next release (even months only) or release train (series of milestones starting in January or July) based on the current version");

			scheduleNextRelease.setVersion((String) project.findProperty("nextVersion"));
			scheduleNextRelease.setGitHubAccessToken((String) project.findProperty("gitHubAccessToken"));
		});
	}
}

相关信息

spring security 源码目录

相关文章

spring security GitHubMilestoneApi 源码

spring security GitHubMilestoneHasNoOpenIssuesTask 源码

spring security GitHubMilestoneNextReleaseTask 源码

spring security GitHubMilestoneNextVersionDueTodayTask 源码

spring security LocalDateAdapter 源码

spring security LocalDateTimeAdapter 源码

spring security Milestone 源码

spring security NextVersionYml 源码

spring security ScheduleNextReleaseTask 源码

spring security SpringReleaseTrain 源码

0  赞