You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by Michel Alessandrini <ws...@gmx-topmail.de> on 2005/08/23 15:23:55 UTC

Simplify the integration of wsrp4j in eclipse

Hi,

the libs are updated almost every day. After that the classpath must be
adjusted each time.
It would be much easier and faster if the classpath-file is delivered with.
Therefore I suggest to create a new directory for ide-tools.
In that dir the following two files should be created.

New directory:     tools/ide/eclipse/

New Files:

1)
.classpath
--------------
<?xml version="1.0" encoding="UTF-8"?>

<!--
  Copyright 1999-2005 The Apache Software Foundation

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->

<classpath>
 <classpathentry kind="src" path="src"/>
 <classpathentry kind="src" path="portlets/proxyportlet/src"/>
 <classpathentry kind="src" path="portlets/wsrptest/src"/>
 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 <classpathentry kind="lib" path="lib/axis-1.2.1.jar"/>
 <classpathentry kind="lib" path="lib/axis-jaxrpc-1.2.1.jar"/>
 <classpathentry kind="lib" path="lib/axis-saaj-1.2.1.jar"/>
 <classpathentry kind="lib" path="lib/castor-0.9.4.1-xml.jar"/>
 <classpathentry kind="lib" path="lib/commons-discovery-0.2.jar"/>
 <classpathentry kind="lib" path="lib/log4j-1.2.8.jar"/>
 <classpathentry kind="lib" path="lib/wsdl4j-1.5.1.jar"/>
 <classpathentry kind="lib" path="lib/build_only/servlet-2_3.jar"/>
 <classpathentry kind="lib" path="lib/consumer/commons-logging-1.0.4.jar"/>
 <classpathentry kind="lib" path="lib/consumer/xercesImpl-2.5.0.jar"/>
 <classpathentry kind="lib" path="lib/consumer/xml-apis-2.5.0.jar"/>
 <classpathentry kind="lib" path="lib/shared/pluto-1.0.1-rc3.jar"/>
 <classpathentry kind="lib" path="lib/shared/portlet-api-1.0.jar"/>
 <classpathentry kind="lib" path="build/ant/lib/ant.jar"/>
 <classpathentry kind="lib" path="build/ant/lib/jakarta-regexp-1.4.jar"/>
 <classpathentry kind="lib" path="build/ant/lib/junit-3.8.1.jar"/>
 <classpathentry kind="lib" path="build/ant/lib/ant-optional.jar"/>
 <classpathentry kind="lib" path="build/ant/lib/xercesImpl-2.5.0.jar"/>
 <classpathentry kind="lib" path="build/ant/lib/xml-apis-2.5.0.jar"/>
 <classpathentry kind="lib"
path="provider/pluto/war/WEB-INF/lib/pluto-portal-1.0.1-rc3.jar"/>
 <classpathentry kind="lib" path="build/ant/lib/ant-contrib-0.6.jar"/>
 <classpathentry kind="output" path="bin"/>
</classpath>


2)
.project
-----------
<?xml version="1.0" encoding="UTF-8"?>

<!--
  Copyright 1999-2005 The Apache Software Foundation

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->

<projectDescription>
 <name>ws-wsrp4j</name>
 <comment></comment>
 <projects>
 </projects>
 <buildSpec>
  <buildCommand>
   <name>org.eclipse.jdt.core.javabuilder</name>
   <arguments>
   </arguments>
  </buildCommand>
 </buildSpec>
 <natures>
  <nature>org.eclipse.jdt.core.javanature</nature>
 </natures>
</projectDescription>


Then the integration of wsrp4j in eclipse should be very easy and fast!!!

regards

Michel