Skip to content

Commit 128f4e3

Browse files
authored
Merge pull request #1079 from blackducksoftware/cp_IDETECT-4294_Doc
Update DetectProperties.java
2 parents 35b296f + 45760f0 commit 128f4e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/synopsys/integration/detect/configuration/DetectProperties.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ private DetectProperties() {
11411141
CaseSensitiveStringListProperty.newBuilder("detect.nuget.excluded.modules")
11421142
.setInfo("Nuget Projects Excluded", DetectPropertyFromVersion.VERSION_3_0_0)
11431143
.setHelp(
1144-
"The projects within the solution to exclude. Detect will exclude all projects with names that include any of the given regex patterns. To match a full project name (for example: 'BaGet.Core'), use a regular expression that matches only the full name ('^BaGet.Core$')")
1144+
"The projects within the solution to exclude. Detect will exclude all projects with names that include any of the given regex patterns. To match a full project name (for example: 'BaGet.Core'), use a regular expression that matches only the full name ('^BaGet.Core$'). Note that the term 'modules' in the parameter name is synonymous with Nuget 'project'.")
11451145
.setExample("^BaGet.Core$,^BaGet.Core.Tests$")
11461146
.setGroups(DetectGroup.NUGET, DetectGroup.SOURCE_SCAN)
11471147
.setCategory(DetectCategory.Advanced)
@@ -1157,9 +1157,9 @@ private DetectProperties() {
11571157

11581158
public static final CaseSensitiveStringListProperty DETECT_NUGET_INCLUDED_MODULES =
11591159
CaseSensitiveStringListProperty.newBuilder("detect.nuget.included.modules")
1160-
.setInfo("Nuget Modules Included", DetectPropertyFromVersion.VERSION_3_0_0)
1160+
.setInfo("Nuget Projects Included", DetectPropertyFromVersion.VERSION_3_0_0)
11611161
.setHelp(
1162-
"The names of the projects in a solution to include (overrides exclude). Detect will include all projects with names that include any of the given regex patterns. To match a full project name (for example: 'BaGet.Core'), use a regular expression that matches only the full name ('^BaGet.Core$')")
1162+
"The names of the projects in a solution to include (overrides exclude). Detect will include all projects with names that include any of the given regex patterns. To match a full project name (for example: 'BaGet.Core'), use a regular expression that matches only the full name ('^BaGet.Core$'). Note that the term 'modules' in the parameter name is synonymous with Nuget 'project'.")
11631163
.setExample("^BaGet.Core$,^BaGet.Core.Tests$")
11641164
.setGroups(DetectGroup.NUGET, DetectGroup.SOURCE_SCAN)
11651165
.setCategory(DetectCategory.Advanced)

0 commit comments

Comments
 (0)