I use IntelliJ IDEA to work on Axis. I exclude all of the
sources/directories that fail to compile because I don't have a relevant
jar file (i.e. JMS, etc).
See the ant build.xml for classes that are excluded from the compile
depending on which jar files are in the classpath. This list is pretty
long, but once you have it configured it doesn't change.
My current exclude list is:
<excludeFromCompile>
<directory
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/encoding/ser/
castor" includeSubdirectories="true" />
<directory
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/components/jm
s" includeSubdirectories="true" />
<directory
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/transport/jms
" includeSubdirectories="true" />
<directory
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/transport/mai
l" includeSubdirectories="true" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/components/im
age/JimiIO.java" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/components/im
age/MerlinIO.java" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/test/AxisTestBase.java" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/components/ne
t/IBMFakeTrustSocketFactory.java" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/components/ne
t/IBMJSSESocketFactory.java" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/components/sc
ript/BSF.java" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/providers/Com
Provider.java" />
<file
url="file://$PROJECT_DIR$/ws-axis/java/src/org/apache/axis/transport/htt
p/JettyAxisServer.java" />
</excludeFromCompile>
--
Tom Jordahl
------------------------------------------------------------------------
--------
From: Dovholuk, Clint [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 13, 2005 1:36 PM
To: [email protected]
Subject: developing axis in eclipse
Hello all, (pre-apology if this is a common question)
I'd like to contribute here and there to the axis project - preferably
1.x as that's what our company will use. Is there a guide out there
that's better then: http://ws.apache.org/axis/java/developers-guide.html
on how to get axis running under eclipse (or any IDE)?
I have the svn plugin, I have all of SVN:....axis/trunk/java downloaded,
but there's many dependencies that prevent eclipse from actually
compiling the source. I was just wondering how most of you
code/compile?
Thanks,
-Clint