Skip to content

Commit

Permalink
Merge pull request #181 from salesforce/plaird/2.3.1_release
Browse files Browse the repository at this point in the history
prepare for 2.3.1 release
  • Loading branch information
plaird authored Jan 15, 2024
2 parents 5e63263 + 3ba6065 commit 1854fbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makerelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
# For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
#

release_version=2.2.5
release_version=2.3.1

echo "RELEASE: You are about to create a local zip file that contains the release bits."
echo "After it is created, there will be instructions on how to upload it to GitHub and create the release metadata."
echo ""
echo "Please enter the release version (e.g. 2.2.5):"
echo "Please enter the release version (e.g. 2.3.1):"
read release_version
echo ""
echo "You have entered $release_version, are you good with this version? Enter to contine, ctrl-c to abort."
Expand Down
1 change: 1 addition & 0 deletions springboot/springboot_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Note that the rule README has more detailed usage instructions for each attribut
| name | **Required**. The name of the Spring Boot application. Typically this is set the same as the package name. Ex: *helloworld*. | none |
| java_library | **Required**. The built jar, identified by the name of the java_library rule, that contains the Spring Boot application. | none |
| boot_app_class | **Required**. The fully qualified name of the class annotated with @SpringBootApplication. Ex: *com.sample.SampleMain* | none |
| boot_launcher_class | **Optional**. Allows you to switch to the new *org.springframework.boot.loader.launch.JarLauncher* introduced in Boot 3.2.0. Defaults to the old launcher. | *org.springframework.boot.loader.JarLauncher* |
| deps | Optional. An additional set of Java dependencies to add to the executable. Normally all dependencies are set on the *java_library*. | <code>None</code> |
| deps_banned| Optional. A list of strings to match against the jar filenames in the transitive graph of dependencies for this springboot app. If any of these strings is found within any jar name, the rule will fail. This is useful for detecting jars that should never go to production. The list of dependencies is obtained after the deps_exclude processing has run. | <code>None</code> |
| deps_exclude | Optional. This attribute provides a list of partial paths that will be omitted from the final packaging step if the string is contained within the dep filename. This is a more raw method than deps_exclude for eliminating a problematic dependency/file that cannot be eliminated upstream. Ex: [*jackson-databind-*]. | <code>None</code> |
Expand Down

0 comments on commit 1854fbc

Please sign in to comment.