Skip to content
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
6 changes: 3 additions & 3 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
load("@score_cr_checker//:cr_checker.bzl", "copyright_checker")
load("@score_docs_as_code//:docs.bzl", "docs")

# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
Expand All @@ -25,7 +26,6 @@ load("@score_cr_checker//:cr_checker.bzl", "copyright_checker")
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
load("@score_format_checker//:macros.bzl", "use_format_targets")
load("@score_docs_as_code//:docs.bzl", "docs")

package(default_visibility = ["//visibility:public"])

Expand All @@ -49,6 +49,6 @@ copyright_checker(
visibility = ["//visibility:public"],
)

docs (
source_dir="process"
docs(
source_dir = "process",
)
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ bazel_dep(name = "aspect_rules_lint", version = "1.4.4")
bazel_dep(name = "score_python_basics", version = "0.3.4")

# Checker rule for CopyRight checks/fixes
bazel_dep(name = "score_cr_checker", version = "0.2.2")
bazel_dep(name = "score_cr_checker", version = "0.3.1")
bazel_dep(name = "score_format_checker", version = "0.1.1")
bazel_dep(name = "score_docs_as_code", version = "1.0.0-RC1")
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions process/general_concepts/score_building_blocks_concept.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ verified by **Unit Tests** (grey box, middle, 5nd column).

Components are defined by **Component Requirements** (green box, middle, 3nd column) and the
**Component Architecture** (green box, middle, 4nd column). A **Component Safety Analysis**
(green box, middle, 6nd column) is required to verify the Component Architecture. Potential faults
(green box, middle, 6nd column) is required to verify the Component Architecture, whereby
violations of safety requirements must be documented. Potential faults
may mitigated by updating the Component Requirements or by the **Component Assumptions of Use**
(green box, middle, 8nd column). The latter one must be considered by the user of the Component.
**Component Tests** (green box, middle, 5nd column) verify the Component requirements, and
Expand All @@ -54,7 +55,8 @@ As mentioned above a Software Module is defined as a Component or a set of compo
Feature of the platform. Features consists of Components and are defined by **Feature Requirements**
(yellow box, middle, 3nd column) and the **Feature Architecture** (yellow box, middle, 4nd column).
A **Feature Safety Analysis** (yellow box, middle, 6nd column) is required to verify the Feature
Architecture. Potential faults may mitigated by updating the Feature Requirements or by the
Architecture, whereby violations of safety requirements must be documented. Potential
faults may mitigated by updating the Feature Requirements or by the
**Feature Assumptions of Use** (yellow box, middle, 8nd column). The latter one must be considered
by the user of the Feature. **Feature Integration Tests** (yellow box, middle, 5nd column) verify
the Feature Requirements and the Feature Architecture as well as the Integration of multiple Units
Expand Down
Loading