Now that you have your build environment setup, we can move onto actually building the Wave In A Box source. Windows Once you have the source and all of the tools installed, open up a Command shell and do the following: set JAVA_HOME=c:\Program Files\Java\jdk[YOUR_VERSION]set ANT=c:\Program Files\winant\bin\antcd [THE_FULL_PATH_TO]wave-protocolANTRunning ANT will commence the build process. This will build both the Wave Server and the Web Interface. To rebuild the source (say after you make changes, or pull down the latest version of the code), run the following in your wave-protocol directory via a Command shell: ANT cleanANTLinux/MacOSX Building under OSX and Linux should not require manually setting path elements (as we had to in Windows). Simply move to the wave-protocol directory and run: $: antTo rebuild the server run: $: ant clean; antEnd Result At the end of the build process you should have the following files in the dist directory under the wave-protocol directory:
If you don't then go back and check the build process, something probably broke |
