From 2e124ade46303f832c6d5fa7c02cccdb55ad21b1 Mon Sep 17 00:00:00 2001 From: Frank Viernau <42963794+fviernau@users.noreply.github.com> Date: Tue, 9 Jan 2024 19:07:27 +0100 Subject: [PATCH] chore: Setup repository configuration for OSS Review Toolkit (#106) Signed-off-by: Frank Viernau --- .ort.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .ort.yml diff --git a/.ort.yml b/.ort.yml new file mode 100644 index 000000000..3df111253 --- /dev/null +++ b/.ort.yml @@ -0,0 +1,15 @@ +--- +excludes: + scopes: + - pattern: "annotationProcessor" + reason: "BUILD_DEPENDENCY_OF" + comment: "Packages to process code annotations only." + - pattern: "checkstyle" + reason: "DEV_DEPENDENCY_OF" + comment: "Packages for static code analysis only." + - pattern: "lombok" + reason: "DEV_DEPENDENCY_OF" + comment: "Packages from Project Lombok only." + - pattern: "test.*" + reason: "TEST_DEPENDENCY_OF" + comment: "Packages for testing only."