You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/02/08 08:08:40 UTC

[incubator-plc4x] branch develop updated: - Forcefully ensured the scala compilation is done before the java compilation.

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

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 54115fc  - Forcefully ensured the scala compilation is done before the java compilation.
54115fc is described below

commit 54115fc561c9ff4b3600b0fe15c49949dac51828
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Fri Feb 8 09:08:36 2019 +0100

    - Forcefully ensured the scala compilation is done before the java compilation.
---
 sandbox/dynamic-driver-base/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sandbox/dynamic-driver-base/pom.xml b/sandbox/dynamic-driver-base/pom.xml
index 8b0c9d0..9884483 100644
--- a/sandbox/dynamic-driver-base/pom.xml
+++ b/sandbox/dynamic-driver-base/pom.xml
@@ -90,7 +90,8 @@
           </execution>
           <execution>
             <id>compile-scala</id>
-            <phase>compile</phase>
+            <!-- Intentionally bound to this phase as we need the scala code compiled first. -->
+            <phase>process-sources</phase>
             <goals>
               <goal>compile</goal>
             </goals>