spring ArtifactoryRepository 源码

  • 2022-08-12
  • 浏览 (395)

springboot ArtifactoryRepository 代码

文件路径:/buildSrc/src/main/java/org/springframework/boot/build/artifactory/ArtifactoryRepository.java

/*
 * Copyright 2012-2020 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.boot.build.artifactory;

import org.gradle.api.Project;

/**
 * An Artifactory repository to which a build of Spring Boot can be published.
 *
 * @author Andy Wilkinson
 */
public final class ArtifactoryRepository {

	private final String name;

	private ArtifactoryRepository(String name) {
		this.name = name;
	}

	public String getName() {
		return this.name;
	}

	@Override
	public String toString() {
		return this.name;
	}

	public static ArtifactoryRepository forProject(Project project) {
		return new ArtifactoryRepository(determineArtifactoryRepo(project));
	}

	private static String determineArtifactoryRepo(Project project) {
		String version = project.getVersion().toString();
		int modifierIndex = version.lastIndexOf('-');
		if (modifierIndex == -1) {
			return "release";
		}
		String type = version.substring(modifierIndex + 1);
		if (type.startsWith("M") || type.startsWith("RC")) {
			return "milestone";
		}
		return "snapshot";
	}

}

相关信息

spring 源码目录

相关文章

spring AsciidoctorConventions 源码

spring ConventionsPlugin 源码

spring DeployedPlugin 源码

spring ExtractResources 源码

spring JavaConventions 源码

spring KotlinConventions 源码

spring MavenPublishingConventions 源码

spring MavenRepositoryPlugin 源码

spring SyncAppSource 源码

spring AutoConfigurationMetadata 源码

0  赞