This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tinaworkflow.xml
65 lines (65 loc) · 3 KB
/
tinaworkflow.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<workflow>
<analyzers>
<step>
<name>IQ Analyzer</name>
<classHint>com.bosch.tina.clm.SonatypeCLMCliAnalyzer
</classHint>
<configuration>
<entry key="server" value="${env.NEXUS_IQ_SERVER_URL}" />
<entry key="scan.result.path" value="${project.build.directory}/clm-scan-result.json" />
<entry key="app.id" value="bosch-iot-hub-examples" />
<entry key="username" value="${env.NEXUS_IQ_USERNAME}" />
<entry key="password" value="${env.NEXUS_IQ_PASSWORD}" />
<entry key="clm.pdf.path" value="${project.build.directory}/tina-maven-plugin/clm-report.pdf" />
<entry key="scan.patterns" value="${project.basedir}/**/target/dependencies/*.jar" />
</configuration>
</step>
</analyzers>
<processors>
<step>
<name>Source Validator</name>
<classHint>org.eclipse.sw360.antenna.validators.workflow.processors.SourceValidator
</classHint>
<configuration>
<entry key="missingSourcesSeverity" value="WARN" />
<entry key="failOnIncompleteSources" value="WARN" />
</configuration>
</step>
<step>
<name>Security Issue Validator</name>
<classHint>org.eclipse.sw360.antenna.validators.workflow.processors.SecurityIssueValidator
</classHint>
<configuration>
<entry key="forbiddenSecurityIssueStatusSeverity" value="FAIL" />
<entry key="securityIssueSeverityLimitSeverity" value="FAIL" />
<entry key="forbiddenSecurityIssueStatuses" value="Open" />
<entry key="securityIssueSeverityLimit" value="5.0" />
<entry key="ignoreSecurityIssueReferences" value="" />
</configuration>
</step>
<step>
<name>License Validator</name>
<classHint>org.eclipse.sw360.antenna.validators.workflow.processors.LicenseValidator
</classHint>
<configuration>
<entry key="forbiddenLicenseSeverity" value="FAIL" />
<entry key="missingLicenseInformationSeverity" value="FAIL" />
<entry key="missingLicenseTextSeverity" value="WARN" />
<entry key="forbiddenLicenses"
value="AGPL-1.0; AGPL-3.0; GPL-1.0; GPL-1.0+; GPL-2.0; GPL-2.0+; GPL-3.0; GPL-3.0+" />
<entry key="ignoredLicenses" value="" />
</configuration>
</step>
</processors>
<generators>
<step>
<name>PDF Report Generator</name>
<classHint>com.bosch.tina.workflow.generators.BoschDisclosureDocumentGenerator
</classHint>
<configuration>
<entry key="disclosure.doc.path"
value="${project.build.directory}/tina-maven-plugin/TINA_disclosure.pdf" />
</configuration>
</step>
</generators>
</workflow>