This is an automated email from the ASF dual-hosted git repository.

cgivre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/master by this push:
     new f5fa6df  DRILL-7840: Add OWASP Dependency Report to Pom.XML
f5fa6df is described below

commit f5fa6dfe744e8a434691a1af784b1a10b33a52bb
Author: Charles S. Givre <[email protected]>
AuthorDate: Sun Jan 10 08:18:26 2021 -0500

    DRILL-7840: Add OWASP Dependency Report to Pom.XML
    
    * DRILL-7840: Add OWASP Dependency Report to Pom.XML
    
    * Updated Docs
---
 docs/dev/Environment.md |  8 ++++++++
 pom.xml                 | 10 ++++++++++
 2 files changed, 18 insertions(+)

diff --git a/docs/dev/Environment.md b/docs/dev/Environment.md
index c320b51..fb594d8 100644
--- a/docs/dev/Environment.md
+++ b/docs/dev/Environment.md
@@ -37,6 +37,14 @@ Setting up IDE formatters is recommended and can be done by 
importing the follow
     cd drill
     mvn clean install -DskipTests
 
+## Build Quickly
+This command works to build Drill in about 2 minutes for quick testing. 
+
+    mvn install -T 4 -Dmaven.test.skip=true -Dmaven.javadoc.skip=true 
-Drat.skip=true -Dlicense.skip=true -Dcheckstyle.skip=true -Dfindbugs.skip=true 
-Dmaven.site.skip=true -Denforcer.skip=true -DskipIfEmpty=true 
-Dmaven.compiler.optimize=true
+
+## Generate Dependency Report
+    mvn clean site
+
 ## Explode tarball in installation directory
    
     mkdir /opt/drill
diff --git a/pom.xml b/pom.xml
index 32c6105..1e72b15 100644
--- a/pom.xml
+++ b/pom.xml
@@ -223,6 +223,16 @@
     <url>https://issues.apache.org/jira/browse/DRILL</url>
   </issueManagement>
 
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.owasp</groupId>
+        <artifactId>dependency-check-maven</artifactId>
+        <version>6.0.4</version>
+      </plugin>
+    </plugins>
+  </reporting>
+
   <build>
     <plugins>
       <plugin>

Reply via email to