Skip to content

Commit 42203c4

Browse files
committed
build(reporter) : Add a FossID snippets reporter plugin
Signed-off-by: Nicolas Nobelis <[email protected]>
1 parent 24588cf commit 42203c4

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

plugins/reporters/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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"))
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
}

settings.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ include(":plugins:reporters:ctrlx")
8282
include(":plugins:reporters:cyclonedx")
8383
include(":plugins:reporters:evaluated-model")
8484
include(":plugins:reporters:fossid")
85+
include(":plugins:reporters:fossid-snippets")
8586
include(":plugins:reporters:freemarker")
8687
include(":plugins:reporters:gitlab")
8788
include(":plugins:reporters:opossum")
@@ -148,6 +149,7 @@ project(":plugins:reporters:ctrlx").name = "ctrlx-reporter"
148149
project(":plugins:reporters:cyclonedx").name = "cyclonedx-reporter"
149150
project(":plugins:reporters:evaluated-model").name = "evaluated-model-reporter"
150151
project(":plugins:reporters:fossid").name = "fossid-reporter"
152+
project(":plugins:reporters:fossid-snippets").name = "fossid-snippets-reporter"
151153
project(":plugins:reporters:freemarker").name = "freemarker-reporter"
152154
project(":plugins:reporters:gitlab").name = "gitlab-reporter"
153155
project(":plugins:reporters:opossum").name = "opossum-reporter"

0 commit comments

Comments
 (0)