Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rules_spring 2.6.0 #3476

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions modules/rules_spring/2.6.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
module(
name = "rules_spring",
version = "2.6.0",
compatibility_level = 2,
repo_name = "rules_spring",
)

# Python for dupe class checking support
plaird marked this conversation as resolved.
Show resolved Hide resolved
bazel_dep(name = "rules_python", version = "0.40.0")

# For License support
bazel_dep(name = "rules_license", version = "1.0.0")


# DEV DEPENDENCIES

# Maven dependencies for the examples
bazel_dep(name = "rules_jvm_external", version = "6.6", dev_dependency = True)
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven", dev_dependency = True)
maven.install(
artifacts = [
"org.slf4j:slf4j-api:2.0.13",
"org.springframework.boot:spring-boot:3.3.5",
"org.springframework.boot:spring-boot-actuator:3.3.5",
"org.springframework.boot:spring-boot-actuator-autoconfigure:3.3.5",
"org.springframework.boot:spring-boot-autoconfigure:3.3.5",
"org.springframework.boot:spring-boot-configuration-processor:3.3.5",
"org.springframework.boot:spring-boot-loader:3.3.5",
"org.springframework.boot:spring-boot-loader-tools:3.3.5",
"org.springframework.boot:spring-boot-starter:3.3.5",
"org.springframework.boot:spring-boot-starter-actuator:3.3.5",
"org.springframework.boot:spring-boot-starter-freemarker:3.3.5",
"org.springframework.boot:spring-boot-starter-jdbc:3.3.5",
"org.springframework.boot:spring-boot-starter-jetty:3.3.5",
"org.springframework.boot:spring-boot-starter-logging:3.3.5",
"org.springframework.boot:spring-boot-starter-security:3.3.5",
"org.springframework.boot:spring-boot-starter-test:3.3.5",
"org.springframework.boot:spring-boot-starter-web:3.3.5",
"org.springframework.boot:spring-boot-test:3.3.5",
"org.springframework.boot:spring-boot-test-autoconfigure:3.3.5",
"org.springframework.boot:spring-boot-starter-thymeleaf:3.3.5",

"org.springframework:spring-aop:6.1.14",
"org.springframework:spring-aspects:6.1.14",
"org.springframework:spring-beans:6.1.14",
"org.springframework:spring-context:6.1.14",
"org.springframework:spring-context-support:6.1.14",
"org.springframework:spring-core:6.1.14",
"org.springframework:spring-expression:6.1.14",
"org.springframework:spring-jdbc:6.1.14",
"org.springframework:spring-test:6.1.14",
"org.springframework:spring-tx:6.1.14",
"org.springframework:spring-web:6.1.14",
"org.springframework:spring-webmvc:6.1.14",

# intentionally ancient version annotation-api; in demoapp we use
# a filter to exclude this dependency
"javax.annotation:javax.annotation-api:1.3.2",

# test deps
"junit:junit:4.13.2",
"org.hamcrest:hamcrest-core:2.2",
],
lock_file = "//:maven_install.json",
)

use_repo(maven, "maven")
32 changes: 32 additions & 0 deletions modules/rules_spring/2.6.0/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
matrix:
platform:
- debian10
- ubuntu2004
- macos
- macos_arm64
bazel: [7.x, 8.x, rolling]
tasks:
verify_targets:
name: Verify build targets
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- '@rules_spring//springboot:springboot_cli'
bcr_test_module:
module_path: ""
matrix:
platform:
- debian10
- ubuntu2004
- macos
- macos_arm64
bazel: [7.x, 8.x, rolling]
tasks:
run_test_module:
name: Run test module
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- //springboot:springboot_cli
test_targets:
- //springboot:check_dupe_classes_test
4 changes: 4 additions & 0 deletions modules/rules_spring/2.6.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"url": "https://github.com/salesforce/rules_spring/releases/download/2.6.0/rules-spring-2.6.0.zip",
"integrity": "sha256-uMLeioEjkGydD8Wv01395fVdYDDE1yJm5N/QVD9iHYk="
}
17 changes: 17 additions & 0 deletions modules/rules_spring/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"homepage": "https://github.com/salesforce/rules_spring",
"maintainers": [
{
"email": "[email protected]",
"github": "plaird",
"name": "Peter Laird"
}
],
"repository": [
"github:salesforce/rules_spring"
],
"versions": [
"2.6.0"
],
"yanked_versions": {}
}
Loading