diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/cpe/package-info.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/cpe/package-info.java
new file mode 100644
index 000000000..3176a4ea5
--- /dev/null
+++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/cpe/package-info.java
@@ -0,0 +1,7 @@
+/**
+ * Contains classes used to parse the CPE XML file from NIST.
+ *
+ * These classes are not used as they add no value over the existing CPE data contained within the CVE data from the NVD. However,
+ * we may consider pulling the more descriptive data from the CPE data in the future.
+ */
+package org.owasp.dependencycheck.data.update.cpe;
diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/package-info.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/package-info.java
index c1438046c..7e061da07 100644
--- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/package-info.java
+++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/data/update/nvd/package-info.java
@@ -1,8 +1,4 @@
/**
- * Contains classes used to parse the NVD CVE XML file.
- *
- * The basic use is that the Importer is called to import an NVD CVE file. The Importer instantiates an Indexer object (which
- * extends Index). The Indexer creates a partial-unmarshalling SAX parser (implemented in the NvdCveXmlFilter) that extracts
- * VulnerabilityTypes (aka Entry) from the NVD CVE data file and stores these into a Lucene Index.
+ * Contains classes used to download, parse, and load the NVD CVE data from NIST into the local database.
*/
package org.owasp.dependencycheck.data.update.nvd;