spring DocumentConstrainedVersions 源码
springboot DocumentConstrainedVersions 代码
文件路径:/buildSrc/src/main/java/org/springframework/boot/build/constraints/DocumentConstrainedVersions.java
/*
* Copyright 2012-2021 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.constraints;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import javax.inject.Inject;
import org.gradle.api.DefaultTask;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.SetProperty;
import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.OutputFile;
import org.gradle.api.tasks.TaskAction;
import org.springframework.boot.build.constraints.ExtractVersionConstraints.ConstrainedVersion;
/**
* Task for documenting a platform's constrained versions.
*
* @author Andy Wilkinson
*/
public class DocumentConstrainedVersions extends DefaultTask {
private final SetProperty<ConstrainedVersion> constrainedVersions;
private File outputFile;
@Inject
public DocumentConstrainedVersions(ObjectFactory objectFactory) {
this.constrainedVersions = objectFactory.setProperty(ConstrainedVersion.class);
}
@Input
public SetProperty<ConstrainedVersion> getConstrainedVersions() {
return this.constrainedVersions;
}
@OutputFile
public File getOutputFile() {
return this.outputFile;
}
public void setOutputFile(File outputFile) {
this.outputFile = outputFile;
}
@TaskAction
public void documentConstrainedVersions() throws IOException {
this.outputFile.getParentFile().mkdirs();
try (PrintWriter writer = new PrintWriter(new FileWriter(this.outputFile))) {
writer.println("|===");
writer.println("| Group ID | Artifact ID | Version");
for (ConstrainedVersion constrainedVersion : this.constrainedVersions.get()) {
writer.println();
writer.printf("| `%s`%n", constrainedVersion.getGroup());
writer.printf("| `%s`%n", constrainedVersion.getArtifact());
writer.printf("| `%s`%n", constrainedVersion.getVersion());
}
writer.println("|===");
}
}
}
相关信息
相关文章
0
赞
- 所属分类: 后端技术
- 本文标签: Spring Boot Java Spring
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦