You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/09/15 06:13:03 UTC

[isis] branch master updated: ISIS-2427: switch on 'vaadin-production' mode for docker deploy build

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

ahuber 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 96d92f1  ISIS-2427: switch on 'vaadin-production' mode for docker deploy build
96d92f1 is described below

commit 96d92f156a3316d6c520dbb401e5e07825f7ea35
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Sep 15 08:12:47 2020 +0200

    ISIS-2427: switch on 'vaadin-production' mode for docker deploy build
---
 examples/demo/vaadin/pom.xml | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/examples/demo/vaadin/pom.xml b/examples/demo/vaadin/pom.xml
index 15418ee..ce0bf56 100644
--- a/examples/demo/vaadin/pom.xml
+++ b/examples/demo/vaadin/pom.xml
@@ -91,9 +91,9 @@
 	</build>
 
 	<dependencies>
-	
+
 		<!-- DEMO DOMAIN + WEB -->
-	
+
 		<dependency>
 			<groupId>org.apache.isis.examples.apps</groupId>
 			<artifactId>demo-web</artifactId>
@@ -123,9 +123,9 @@
 			<groupId>org.apache.isis.valuetypes</groupId>
 			<artifactId>isis-valuetypes-asciidoc-ui-vaa</artifactId>
 		</dependency>
-		
+
 		<!-- EXTENSIONS WKT -->
-		
+
 		<dependency>
 			<groupId>org.apache.isis.valuetypes</groupId>
 			<artifactId>isis-valuetypes-asciidoc-ui-wkt</artifactId>
@@ -186,7 +186,7 @@
 				</plugins>
 			</build>
 		</profile>
-		
+
 		<profile>
 			<id>deploy-to-docker-io</id>
 			<activation>
@@ -195,7 +195,7 @@
 				</property>
 			</activation>
 			<properties>
-				<package-as-war>false</package-as-war>
+				<vaadin.productionMode>true</vaadin.productionMode>
 			</properties>
 			<dependencies>
 				<!-- add flavor specific here -->
@@ -232,8 +232,9 @@
 					</plugin>
 				</plugins>
 			</build>
+			
 		</profile>
-		
+
 
 	</profiles>