-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.0.0 major repackaging of rule #30
- Loading branch information
Showing
24 changed files
with
87 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# | ||
# Copyright (c) 2017-2021, salesforce.com, inc. | ||
# All rights reserved. | ||
# Licensed under the BSD 3-Clause license. | ||
# For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause | ||
# | ||
|
||
# List of standard imports bundles that most/all Spring Boot app will need. | ||
|
||
java_import( | ||
name = "springboot_required_deps", | ||
jars = [], | ||
visibility = ["//visibility:public"], | ||
exports = [ | ||
"@maven//:org_springframework_boot_spring_boot", | ||
"@maven//:org_springframework_boot_spring_boot_actuator", | ||
"@maven//:org_springframework_boot_spring_boot_actuator_autoconfigure", | ||
"@maven//:org_springframework_boot_spring_boot_autoconfigure", | ||
"@maven//:org_springframework_boot_spring_boot_loader", | ||
"@maven//:org_springframework_boot_spring_boot_starter", | ||
"@maven//:org_springframework_boot_spring_boot_starter_logging", | ||
"@maven//:org_springframework_spring_aop", | ||
"@maven//:org_springframework_spring_beans", | ||
"@maven//:org_springframework_spring_context", | ||
"@maven//:org_springframework_spring_core", | ||
"@maven//:org_springframework_spring_expression", | ||
"@maven//:org_springframework_spring_web", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## Import Bundles for Spring Boot Starters | ||
|
||
This is a scheme for providing convenience bundles of dependencies for each open source Spring Boot starter. | ||
*springboot_required_deps* is a convenience bundle that contains the core list that all Spring Boot apps need. | ||
We used to maintain others, but have since removed all other bundles. | ||
|
||
```starlark | ||
deps = [ | ||
"//springboot/import_bundles:springboot_required_deps", | ||
] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.