File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
buildSrc/src/main/java/org/springframework/boot/build/bom/bomr Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2012-2020 the original author or authors.
2+ * Copyright 2012-2021 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
3333import org .gradle .api .InvalidUserDataException ;
3434import org .gradle .api .Task ;
3535import org .gradle .api .internal .tasks .userinput .UserInputHandler ;
36+ import org .gradle .api .tasks .Input ;
3637import org .gradle .api .tasks .TaskAction ;
3738import org .gradle .api .tasks .TaskExecutionException ;
3839import org .gradle .api .tasks .options .Option ;
@@ -64,6 +65,11 @@ public void setMilestone(String milestone) {
6465 this .milestone = milestone ;
6566 }
6667
68+ @ Input
69+ public String getMilestone () {
70+ return this .milestone ;
71+ }
72+
6773 @ TaskAction
6874 void upgradeDependencies () {
6975 GitHubRepository repository = createGitHub ().getRepository (this .bom .getUpgrade ().getGitHub ().getOrganization (),
You can’t perform that action at this time.
0 commit comments