From 184c2fcfd7e8e9d9da2fdc5948fac6be3ee8b34f Mon Sep 17 00:00:00 2001 From: Frank Viernau Date: Wed, 3 Jan 2024 12:31:34 +0100 Subject: [PATCH] chore: Setup repository configuration for OSS Review Toolkit See also [1]. [1] https://github.com/oss-review-toolkit/ort/blob/f9f938b263bfe4ae3c8e8c45272bfdc65259035b/website/docs/configuration/ort-yml.md Signed-off-by: Frank Viernau --- .ort.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .ort.yml diff --git a/.ort.yml b/.ort.yml new file mode 100644 index 0000000..27df576 --- /dev/null +++ b/.ort.yml @@ -0,0 +1,14 @@ +--- +excludes: + scopes: + - pattern: "checkstyle" + reason: "DEV_DEPENDENCY_OF" + comment: "Packages for static code analysis only." + - pattern: "test.*" + reason: "TEST_DEPENDENCY_OF" + comment: "Packages for testing only." +license_choices: + repository_license_choices: + - given: EPL-1.0 OR LGPL-2.1-or-later OR GPL-2.0-or-later OR Apache-2.0 OR BSD-3-Clause + choice: BSD-3-Clause + \ No newline at end of file