Skip to content

Commit

Permalink
WINDUP-3735 Added 'skipSourceCodeReports' advanced option (#897)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrizzi committed Mar 17, 2023
1 parent d561460 commit 99b13ee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions ui-pf4/src/main/webapp/src/Constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export enum AdvancedOptionsFieldKey {
EXPLODED_APP = "explodedApp",
KEEP_WORK_DIRS = "keepWorkDirs",
SKIP_REPORTS = "skipReports",
SKIP_SOURCE_CODE_REPORTS = "skipSourceCodeReports",
ALLOW_NETWORK_ACCESS = "online",
MAVENIZE = "mavenize",
SOURCE_MODE = "sourceMode",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ interface FormValues {
[AdvancedOptionsFieldKey.EXPLODED_APP]?: boolean;
[AdvancedOptionsFieldKey.KEEP_WORK_DIRS]?: boolean;
[AdvancedOptionsFieldKey.SKIP_REPORTS]?: boolean;
[AdvancedOptionsFieldKey.SKIP_SOURCE_CODE_REPORTS]?: boolean;
[AdvancedOptionsFieldKey.ALLOW_NETWORK_ACCESS]?: boolean;
[AdvancedOptionsFieldKey.MAVENIZE]?: boolean;
[AdvancedOptionsFieldKey.SOURCE_MODE]?: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@ export const Fields: Map<AdvancedOptionsFieldKey, IFieldInfo> = new Map([
type: "switch",
},
],
[
AdvancedOptionsFieldKey.SKIP_SOURCE_CODE_REPORTS,
{
label: "Skip source code reports",
type: "switch",
},
],
[
AdvancedOptionsFieldKey.ALLOW_NETWORK_ACCESS,
{
Expand Down

0 comments on commit 99b13ee

Please sign in to comment.