You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by fj...@apache.org on 2019/09/14 18:56:15 UTC

[incubator-druid] branch master updated: Make running test in Intellij work with JaCoCo (#8526)

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

fjy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-druid.git


The following commit(s) were added to refs/heads/master by this push:
     new c254261  Make running test in Intellij work with JaCoCo (#8526)
c254261 is described below

commit c254261e73a1c240fe840938e18e6c5750ce7acf
Author: Chi Cao Minh <ch...@imply.io>
AuthorDate: Sat Sep 14 11:56:09 2019 -0700

    Make running test in Intellij work with JaCoCo (#8526)
    
    * Make running test in Intellij work with JaCoCo
    
    After the jacoco-maven-plugin was added, running test in IntelliJ fails
    with the error "Could not find or load main class @{jacocoArgLine}".
    Add a default IntelliJ configuration file so that running tests in the
    IDE works with the jacoco-maven-plugin configuration and the
    out-of-the-box developer experience is better. Other solutions described
    in https://stackoverflow.com/q/24115142 (e.g., setting an empty
    "jacocoArgLine" maven property) did not work.
    
    * Add comment with link to PR
---
 .idea/mavenProjectSettings.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.idea/mavenProjectSettings.xml b/.idea/mavenProjectSettings.xml
new file mode 100644
index 0000000..1eb1f05
--- /dev/null
+++ b/.idea/mavenProjectSettings.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="MavenProjectSettings">
+    <option name="testRunningSettings">
+      <MavenTestRunningSettings>
+        <option name="passArgLine" value="false" />  <!-- see https://github.com/apache/incubator-druid/pull/8526 -->
+      </MavenTestRunningSettings>
+    </option>
+  </component>
+</project>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org