File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ dependencies {
3333 api(project(" :plugins:reporters:cyclonedx-reporter" ))
3434 api(project(" :plugins:reporters:evaluated-model-reporter" ))
3535 api(project(" :plugins:reporters:fossid-reporter" ))
36+ api(project(" :plugins:reporters:fossid-snippets-reporter" ))
3637 api(project(" :plugins:reporters:freemarker-reporter" ))
3738 api(project(" :plugins:reporters:gitlab-reporter" ))
3839 api(project(" :plugins:reporters:opossum-reporter" ))
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (C) 2023 The ORT Project Authors (see <https://github.com/oss-review-toolkit/ort/blob/main/NOTICE>)
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * https://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ *
16+ * SPDX-License-Identifier: Apache-2.0
17+ * License-Filename: LICENSE
18+ */
19+
20+ plugins {
21+ // Apply core plugins.
22+ `java- library`
23+ }
24+
25+ dependencies {
26+ api(project(" :reporter" ))
27+ }
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ include(":plugins:reporters:ctrlx")
8282include(" :plugins:reporters:cyclonedx" )
8383include(" :plugins:reporters:evaluated-model" )
8484include(" :plugins:reporters:fossid" )
85+ include(" :plugins:reporters:fossid-snippets" )
8586include(" :plugins:reporters:freemarker" )
8687include(" :plugins:reporters:gitlab" )
8788include(" :plugins:reporters:opossum" )
@@ -148,6 +149,7 @@ project(":plugins:reporters:ctrlx").name = "ctrlx-reporter"
148149project(" :plugins:reporters:cyclonedx" ).name = " cyclonedx-reporter"
149150project(" :plugins:reporters:evaluated-model" ).name = " evaluated-model-reporter"
150151project(" :plugins:reporters:fossid" ).name = " fossid-reporter"
152+ project(" :plugins:reporters:fossid-snippets" ).name = " fossid-snippets-reporter"
151153project(" :plugins:reporters:freemarker" ).name = " freemarker-reporter"
152154project(" :plugins:reporters:gitlab" ).name = " gitlab-reporter"
153155project(" :plugins:reporters:opossum" ).name = " opossum-reporter"
You can’t perform that action at this time.
0 commit comments