[Xmpp4js-commit] SF.net SVN: xmpp4js: [701] xmpp4js-launcher
Status: Beta
Brought to you by:
h-iverson
From: <h-i...@us...> - 2008-02-28 21:19:56
|
Revision: 701 http://xmpp4js.svn.sourceforge.net/xmpp4js/?rev=701&view=rev Author: h-iverson Date: 2008-02-28 13:19:57 -0800 (Thu, 28 Feb 2008) Log Message: ----------- added README and changed version to 0.2-SNAPSHOT Modified Paths: -------------- xmpp4js-launcher/pom.xml xmpp4js-launcher/src/assembler/src.xml Added Paths: ----------- xmpp4js-launcher/README Property Changed: ---------------- xmpp4js-launcher/ Property changes on: xmpp4js-launcher ___________________________________________________________________ Name: svn:ignore + target Added: xmpp4js-launcher/README =================================================================== --- xmpp4js-launcher/README (rev 0) +++ xmpp4js-launcher/README 2008-02-28 21:19:57 UTC (rev 701) @@ -0,0 +1,5 @@ +This project provides a Jetty runtime to experiment with Xmpp4Js. + +To begin, execute run.bat and point your browser to http://localhost:8080 + +The simpleclient.html is editable in-place without restarting Jetty. \ No newline at end of file Modified: xmpp4js-launcher/pom.xml =================================================================== --- xmpp4js-launcher/pom.xml 2008-02-28 18:09:23 UTC (rev 700) +++ xmpp4js-launcher/pom.xml 2008-02-28 21:19:57 UTC (rev 701) @@ -8,7 +8,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>com.soashable.lib</groupId> <artifactId>xmpp4js-launcher</artifactId> - <version>1.0-SNAPSHOT</version> + <version>0.2-SNAPSHOT</version> <packaging>war</packaging> <name>Xmpp4Js Sample Client Launcher</name> Modified: xmpp4js-launcher/src/assembler/src.xml =================================================================== --- xmpp4js-launcher/src/assembler/src.xml 2008-02-28 18:09:23 UTC (rev 700) +++ xmpp4js-launcher/src/assembler/src.xml 2008-02-28 21:19:57 UTC (rev 701) @@ -1,8 +1,9 @@ <assembly> - <id>with-dependencies</id> - <includeBaseDirectory>false</includeBaseDirectory> + <id>launcher</id> + <includeBaseDirectory>true</includeBaseDirectory> + <baseDirectory>xmpp4js-launcher</baseDirectory> <formats> - <format>dir<!-- for debugging, zip/tar.gz for release --></format> + <format>zip</format> </formats> <dependencySets> @@ -22,14 +23,17 @@ <directory>src/main/launcher</directory> <outputDirectory></outputDirectory> </fileSet> + <fileSet> + <directory>target/${artifactId}-${version}</directory> + <outputDirectory>webapps/root</outputDirectory> + </fileSet> </fileSets> + <files> - <file> - <source>target/xmpp4js-launcher-1.0-SNAPSHOT.war</source> - <outputDirectory>webapps</outputDirectory> - <destName>root.war</destName> - </file> + <file> + <source>README</source> + <outputDirectory></outputDirectory> + </file> </files> - </assembly> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |