mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-15 16:23:37 +01:00
57 lines
2.9 KiB
Properties
57 lines
2.9 KiB
Properties
application.name=${pom.name}
|
|
application.version=${pom.version}
|
|
autoupdate=true
|
|
max.download.threads=3
|
|
|
|
#temp.directory defaults to System.getProperty("java.io.tmpdir")
|
|
#temp.directory=[path to temp directory]
|
|
|
|
# the path to the data directory; the [JAR] signifies to use the relative path
|
|
# to the dependency-check-core JAR file. This path is only used to construct
|
|
# the connection string for the H2 driver (or other drivers that require a file path
|
|
# to be supplied. If you are using another database (MySQL, Oracle, etc.) this property
|
|
# will not be used. The data.directory will be resolved and if the connection string
|
|
# below contains a %s then the data.directory will replace the %s.
|
|
data.directory=[JAR]/data
|
|
data.connection_string=jdbc:h2:file:%s/cve.2.9;FILE_LOCK=SERIALIZED;AUTOCOMMIT=ON;
|
|
#data.connection_string=jdbc:mysql://localhost:3306/dependencycheck
|
|
|
|
# user name and password for the database connection. The inherent case is to use H2.
|
|
# As such, this unsecure username/password exist.
|
|
data.user=dcuser
|
|
data.password=DC-Pass1337!
|
|
# The following are only used if the DB Driver is not JDBC4 compliant and/or the driver
|
|
# is not in the current classpath. Setting these properties will add the give path(s) to
|
|
# the class loader and then register the driver with the DriverManager. If the class is
|
|
# not in the path you must specify both the driver name (aka the fully qualified driver name)
|
|
# and the driver path. The driver path can be a semi-colon separated list of files/directories
|
|
# to ensure any and all needed files can be added to the classpath to load the driver.
|
|
# For non-JDBC4 drivers in the classpath only the driver_name needs to be set.
|
|
# For MOST situations these properties likely do not need to be set.
|
|
data.driver_name=org.h2.Driver
|
|
data.driver_path=
|
|
|
|
# the path to the cpe xml file
|
|
cpe.url=http://static.nvd.nist.gov/feeds/xml/cpe/dictionary/official-cpe-dictionary_v2.2.xml.gz
|
|
# the path to the cpe meta data file.
|
|
cpe.meta.url=http://static.nvd.nist.gov/feeds/xml/cpe/dictionary/official-cpe-dictionary_v2.2.meta
|
|
|
|
# the number of days that the modified nvd cve data holds data for. We don't need
|
|
# to update the other files if we are within this timespan. Per NIST this file
|
|
# holds 8 days of updates, we are using 7 just to be safe.
|
|
cve.url.modified.validfordays=7
|
|
|
|
# the path to the modified nvd cve xml file.
|
|
cve.url-1.2.modified=http://nvd.nist.gov/download/nvdcve-modified.xml
|
|
cve.url-2.0.modified=http://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-modified.xml
|
|
cve.startyear=2014
|
|
cve.url-2.0.base=http://static.nvd.nist.gov/feeds/xml/cve/nvdcve-2.0-%d.xml
|
|
cve.url-1.2.base=http://nvd.nist.gov/download/nvdcve-%d.xml
|
|
|
|
# the URL for searching Nexus for SHA-1 hashes and whether it's enabled
|
|
analyzer.nexus.enabled=true
|
|
analyzer.nexus.url=https://repository.sonatype.org/service/local/
|
|
# If set to true, the proxy will still ONLY be used if the proxy properties (proxy.url, proxy.port)
|
|
# are configured
|
|
analyzer.nexus.proxy=true
|