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 2018/04/04 11:58:46 UTC

[incubator-plc4x] branch master updated: Made JQAssistant run with Neo4j 3 instead of 2

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2d89316  Made JQAssistant run with Neo4j 3 instead of 2
2d89316 is described below

commit 2d89316ffada9c7e1bd30ddf784abeabc231e380
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Wed Apr 4 13:58:42 2018 +0200

    Made JQAssistant run with Neo4j 3 instead of 2
---
 Jenkinsfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 583be8c..8fceb39 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,6 +32,8 @@ pipeline {
         MVN_LOCAL_REPO_OPT = '-Dmaven.repo.local=.repository'
         // Testfails will be handled by the jenkins junit steps and mark the build as unstable.
         MVN_TEST_FAIL_IGNORE = '-Dmaven.test.failure.ignore=true'
+        // Make JQAssistant run with Neo4j 3.1.3 instead of 2.x
+        JQASSISTANT_NEO4J_VERSION = '-Djqassistant.neo4jVersion=3'
     }
 
     tools {
@@ -90,7 +92,7 @@ pipeline {
             }
             steps {
                 echo 'Building'
-                sh 'mvn -P${JENKINS_PROFILE} ${MVN_TEST_FAIL_IGNORE} clean install'
+                sh 'mvn -P${JENKINS_PROFILE} ${MVN_TEST_FAIL_IGNORE} ${JQASSISTANT_NEO4J_VERSION} clean install'
             }
             post {
                 always {

-- 
To stop receiving notification emails like this one, please contact
cdutz@apache.org.