You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2020/01/05 12:43:24 UTC

[isis] branch master updated: ISIS-2250: fixes for smoketests ?

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 608b888  ISIS-2250: fixes for smoketests ?
608b888 is described below

commit 608b8883e02e010a8277ee8a97f99460fa38a462
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Jan 5 12:42:36 2020 +0000

    ISIS-2250: fixes for smoketests ?
---
 examples/smoketests/src/main/resources/application.yml | 5 +++++
 scripts/ci/build-smoketests.sh                         | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/examples/smoketests/src/main/resources/application.yml b/examples/smoketests/src/main/resources/application.yml
index 9df79d4..a361c2d 100644
--- a/examples/smoketests/src/main/resources/application.yml
+++ b/examples/smoketests/src/main/resources/application.yml
@@ -1,5 +1,6 @@
 isis:
   reflector:
+
     validator:
       allowDeprecated: false
       noParamsOnly: true
@@ -25,6 +26,10 @@ isis:
     explicitAnnotations:
       action: true
 
+    introspector:
+      lock-after-full-introspection: false
+      validate-incrementally: false
+
   objects:
     editing: false
 
diff --git a/scripts/ci/build-smoketests.sh b/scripts/ci/build-smoketests.sh
index 392a82e..9b7d5f7 100644
--- a/scripts/ci/build-smoketests.sh
+++ b/scripts/ci/build-smoketests.sh
@@ -27,7 +27,7 @@ sh $SCRIPT_DIR/_print-environment.sh "build-smoketests"
 #
 if [ ! -z "$REVISION" ]; then
   cd $PROJECT_ROOT_PATH/core-parent
-  mvn versions:set -DnewVersion=$REVISION -Ddemo-smoketests
+  mvn versions:set -DnewVersion=$REVISION -Dsmoketests-module
   cd $PROJECT_ROOT_PATH
 fi
 
@@ -50,6 +50,6 @@ done
 #
 if [ ! -z "$REVISION" ]; then
   cd $PROJECT_ROOT_PATH/core-parent
-  mvn versions:revert -Dstarter-smoketests
+  mvn versions:revert -Dsmoketests-module
   cd $PROJECT_ROOT_PATH
 fi