Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Last active February 5, 2017 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrichardsz/6959463 to your computer and use it in GitHub Desktop.
Save jrichardsz/6959463 to your computer and use it in GitHub Desktop.
Cambios en el ant por defecto de openxava para poder generar un war del proyecto.
This:
<target name="deployWar">
<!-- In a directory -->
<ant antfile="../OpenXava/build.xml" target="deploy"/>
<!-- In a file (it does not work well on windows + tomcat)
<ant antfile="../OpenXava/build.xml" target="deployWar"/>
-->
</target>
To:
<target name="deployWar">
<!-- In a directory -->
<ant antfile="../OpenXava/build.xml" target="deploy"/>
<!-- In a file (it does not work well on windows + tomcat)-->
<ant antfile="../OpenXava/build.xml" target="deployWar"/>
</target>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment