Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

vaadin-server.xml 1004B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0"?>
  2. <project xmlns:antcontrib="antlib:net.sf.antcontrib" xmlns:ivy="antlib:org.apache.ivy.ant" name="vaadin-server" default="deploy-and-start" basedir=".">
  3. <include file="../common.xml" />
  4. <target name="deploy-and-start">
  5. <fail unless="war.file" message="No war file given in 'war.file'" />
  6. <ivy:resolve file="ivy.xml" />
  7. <ivy:cachepath pathid="classpath.jetty" conf="jetty-run" />
  8. <java classname="org.mortbay.jetty.runner.Runner" fork="yes">
  9. <arg value="--port" />
  10. <arg value="8888" />
  11. <arg value="${war.file}" />
  12. <classpath refid="classpath.jetty" />
  13. <jvmarg value="-ea" />
  14. </java>
  15. </target>
  16. <target name="wait-for-startup">
  17. <echo>Waiting for Servlet Container to start up.</echo>
  18. <waitfor maxwait="60" maxwaitunit="second" checkevery="5" checkeveryunit="second" timeoutproperty="server.start.failed">
  19. <http url="http://localhost:8888" />
  20. </waitfor>
  21. <fail if="server.start.failed" message="Server startup failed" />
  22. </target>
  23. </project>