Skip to content
Snippets Groups Projects
Commit a9678e2e authored by Andreas Rauschert's avatar Andreas Rauschert
Browse files

Update mantle to v18.0.1

parent 5d8f765a
No related branches found
No related tags found
1 merge request!108chore!: Integrate MantleAPI v18
Pipeline #76695 failed
......@@ -109,7 +109,7 @@
"moduleExtensions": {
"//ThirdParty:dependencies.bzl%non_module_dependencies": {
"general": {
"bzlTransitiveDigest": "tgfIg7RVk1TQKXoZcKInJsuX5iZHT2kkSXReSmbncsM=",
"bzlTransitiveDigest": "tBk6QzAGQbt/BtLhfoOUUP6eX8cYszl0ArIQfc2O2oQ=",
"usagesDigest": "fWqXZiAX8d00fAObEYNQNqPsov2UU/t4Er303zhLExI=",
"recordedFileInputs": {},
"recordedDirentsInputs": {},
......@@ -150,9 +150,9 @@
"bzlFile": "@@bazel_tools//tools/build_defs/repo:http.bzl",
"ruleClassName": "http_archive",
"attributes": {
"url": "https://gitlab.eclipse.org/eclipse/openpass/mantle-api/-/archive/v18.0.0/mantle-api-v18.0.0.tar.gz",
"sha256": "4c413e3bd035531f232c5b54aeaa329b82c9e80926f44cd6364d6892034e87d5",
"strip_prefix": "mantle-api-v18.0.0",
"url": "https://gitlab.eclipse.org/eclipse/openpass/mantle-api/-/archive/v18.0.1/mantle-api-v18.0.1.tar.gz",
"sha256": "04f15e1b932ffabff2e6e3070c2d2205916a30a53c8eaed49de510a01903e104",
"strip_prefix": "mantle-api-v18.0.1",
"type": "tar.gz"
}
},
......@@ -183,7 +183,7 @@
},
"//ThirdParty:dependencies.bzl%non_module_dev_dependencies": {
"general": {
"bzlTransitiveDigest": "tgfIg7RVk1TQKXoZcKInJsuX5iZHT2kkSXReSmbncsM=",
"bzlTransitiveDigest": "tBk6QzAGQbt/BtLhfoOUUP6eX8cYszl0ArIQfc2O2oQ=",
"usagesDigest": "uW1SCv+qW+K9gJBM3Sj1VmImMHZGvK3mBujc7LmkYPg=",
"recordedFileInputs": {},
"recordedDirentsInputs": {},
......
......@@ -29,7 +29,7 @@ The project maintains the following source code repositories:
### mantle_api (MantleAPI)
- License: [Eclipse Public License 2.0](https://gitlab.eclipse.org/eclipse/simopenpass/scenario_api/-/blob/master/LICENSE.txt)
- Repository: https://gitlab.eclipse.org/eclipse/simopenpass/scenario_api
- Commit: see https://gitlab.eclipse.org/eclipse/openpass/mantle-api/-/tags/v2.0.0
- Commit: see https://gitlab.eclipse.org/eclipse/openpass/mantle-api/-/tags/v18.0.1
### map_sdk
- License: [Eclipse Public License 2.0](https://gitlab.eclipse.org/eclipse/openpass/map-sdk/-/blob/main/LICENSE.txt)
......
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
_TAG = "v18.0.0"
_TAG = "v18.0.1"
def mantle_api():
maybe(
http_archive,
name = "mantle_api",
url = "https://gitlab.eclipse.org/eclipse/openpass/mantle-api/-/archive/{tag}/mantle-api-{tag}.tar.gz".format(tag = _TAG),
sha256 = "4c413e3bd035531f232c5b54aeaa329b82c9e80926f44cd6364d6892034e87d5",
sha256 = "04f15e1b932ffabff2e6e3070c2d2205916a30a53c8eaed49de510a01903e104",
strip_prefix = "mantle-api-{tag}".format(tag = _TAG),
type = "tar.gz",
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment