Commit 76d0472e authored by Administrator's avatar Administrator

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.
parent 4d1bf4e5
......@@ -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
......
......@@ -4,7 +4,7 @@
<groupId>es.uvigo.esei.daa</groupId>
<artifactId>example</artifactId>
<packaging>war</packaging>
<version>0.1.2</version>
<version>0.1.3</version>
<name>DAA Example</name>
<licenses>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment