From 76d0472e0cb248bd1a593b4a1894c1677013ded4 Mon Sep 17 00:00:00 2001 From: Miguel Reboiro-Jato Date: Wed, 14 Feb 2018 17:44:52 +0100 Subject: [PATCH] Fixes execution command The command to execute the application launching it without watching the file system was not currently working, as the command used "cargo:start" closed Tomcat when the construction finished. This command has been replaced by "cargo:run", that blocks the construction avoiding Tomcat shut down. --- README.md | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d5b3362..35ed10d 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ comandos (desde la raíz el proyecto): Una vez configurada la base de datos podemos lanzar la ejecución con el comando: -`mvn -Prun-tomcat-mysql -DskipTests=true package cargo:start` +`mvn -Prun-tomcat-mysql -DskipTests=true package cargo:run` La aplicación se servirá en la URL local: http://localhost:9080/DAAExample diff --git a/pom.xml b/pom.xml index 23991ef..89bb003 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ es.uvigo.esei.daa example war - 0.1.2 + 0.1.3 DAA Example -- 2.18.1