You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by sb...@apache.org on 2020/08/24 18:34:47 UTC

[streams] 01/02: resolves STREAMS-670

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

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

commit 1c5f0b901c9b2ddbd50ad5f9ec82c1be7e93f6da
Author: sblackmon <sb...@apache.org>
AuthorDate: Thu Aug 20 16:38:29 2020 -0500

    resolves STREAMS-670
    
    resolves STREAMS-670
    new Scala Maven Plugin can fail in some modules due to default incremental compile mode
---
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pom.xml b/pom.xml
index e2632b5..182cce7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -848,6 +848,9 @@
                     <groupId>net.alchim31.maven</groupId>
                     <artifactId>scala-maven-plugin</artifactId>
                     <version>${scala.plugin.version}</version>
+                    <configuration>
+                        <recompileMode>all</recompileMode>
+                    </configuration>
                 </plugin>
             </plugins>
         </pluginManagement>