Hi,
I'm trying to make a "self-made" documentation, but couldn't do much,
because I couldn't deploy the producer two weeks ago. I don't know
whether the deploying is functional now. Here are the steps that I was
doing:
1. SVN - get the binary distribution and extract it in a dir %SVN_HOME%
2. SVN - add %SVN_HOME%\bin to the PATH variable.
- adjust if needed the proxy settings (in WIN:
%APPDATA%/Subversion/servers)
3. WSRP4J - check it out using the SVN
(http://portals.apache.org/wsrp4j/contributing/cvs.html)
- command: svn co
https://svn.apache.org/repos/asf/portals/wsrp4j/trunk
- there will be a directory builded with the name "trunk"
(named here %trunk%)
4. MAVEN - download maven 2.0.4, the binary distribution and extract
it in a dir %MAVEN_HOME%
5. MAVEN - add MAVEN_HOME%\bin to the PATH variable
- adjust if needed the proxy settings (in WIN:
%USER_HOME%\.m2\settings.xml)
<settings>
<proxies>
<proxy>
<id>YourProxyID</id>
<active>true</active>
<protocol>http</protocol>
<username></username>
<password></password>
<host>YourProxyURL</host>
<port>YourProxyPort</port>
<nonProxyHosts>localhost</nonProxyHosts>
</proxy>
</proxies>
<profiles>
<profile>
<id>ibiblio</id>
<repositories>
<repository>
<id>ibibliorep</id>
<name>ibiblio builds</name>
<url>www.ibiblio.org/maven2</url>
<layout>default</layout>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>ibiblio</activeProfile>
</activeProfiles>
</settings>
6. Trunk - copy the build.properties.sample file as build.properties
and adjust your tomcat installation in that file.
6. Go to %trunk% and run "mvn install" to build the WSRP4J project.
If you want to be sure that you're doing a complete install, you
should delete all the files in the
USER_HOME%\.m2\repository dir. If something go wrong, try again.
7. Here must be the info how do deploy the producer and the consumer,
but I still don't know how ... Maybe someone can help.
On 9/21/06, Stephen More <[EMAIL PROTECTED]> wrote:
I see that the docs for getting started (
http://portals.apache.org/wsrp4j/gettingstarted/ ) are using maven
1.0.2.
After checking the code out from subversion, I see the code has been
updated for maven 2.0.
Can someone update the getting started docs to include the newer
version of maven ?
-Thanks
Steve More