Skip to content

fix module metadata #229

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

Merged
merged 1 commit into from
Dec 10, 2024
Merged
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
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "rules_spring",
version = "2.5.0",
version = "2.5.1",
compatibility_level = 2,
repo_name = "rules_spring",
)
Expand All @@ -22,7 +22,7 @@ bazel_dep(name = "rules_license", version = "1.0.0")

# 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")
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven", dev_dependency = True)
maven.install(
artifacts = [
"org.slf4j:slf4j-api:2.0.13",
Expand Down
6 changes: 6 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Navigate into our examples directories:
- [Hello World](helloworld): bare bones example
- [Demo App](demoapp): demonstrates how to use various features in the rule

The examples above are coresident with the rule itself, which makes them not precise.
Your usage of rules_spring will be as a remote repository.
These same examples are availabe in a dedicated repository:

- [External Demos](https://github.com/plaird/rules_spring_demoapp)

There is also a Kotlin example, which is kept in a separate branch in this repository:

- [KotlinApp](https://github.com/salesforce/rules_spring/tree/examples_kotlin) shows how to build and run Spring Boot applications written in Kotlin with *rules_spring*