i wanted start programming with shale...
so i tried to integrate the shale blank war into eclipse as a new tomcat project
because i was not able to configure maven2 and shale into eclipse i'm using ant.
in the web-inf/src folder is my build.xml wich is working...
<project name="BuildProject" basedir="../" default="build">
<path id="build.classpath">
<pathelement path="classes" />
<pathelement path="lib/commons-beanutils.jar" />
<pathelement path="lib/commons-chain.jar" />
<pathelement path="lib/commons-codec.jar" />
<pathelement path="lib/commons-collections.jar" />
<pathelement path="lib/commons-digester.jar" />
<pathelement path="lib/commons-el.jar" />
<pathelement path="lib/commons-fileupload.jar" />
<pathelement path="lib/commons-logging.jar" />
<pathelement path="lib/commons-validator.jar" />
<pathelement path="lib/jakarta-oro.jar" />
<pathelement path="lib/jstl-api.jar" />
<pathelement path="lib/jstl-impl.jar" />
<pathelement path="lib/myfaces-api.jar" />
<pathelement path="lib/myfaces-impl.jar" />
<pathelement path="lib/shale-core.jar" />
<pathelement path="src/servlet-api.jar" />
<pathelement path="${classpath}" />
</path>
<target name="build">
<delete dir="/${basedir}/../work"/>
<mkdir dir="/${basedir}/../work"/>
<delete dir="${basedir}/classes"/>
<mkdir dir="${basedir}/classes"/>
<javac srcdir="src" destdir="classes" debug="true"
debuglevel="lines,vars,source">
<compilerarg value="-Xlint:unchecked"/>
<classpath refid="build.classpath" />
</javac>
</target>
</project>
problem or questions... is it possible to compile the jsp files too
if some files are unchecked during compiling, what can i do
anybody other solutions -> maven2 + eclipse plugin -> if so maybe give
an packed archive with his eclipse project
stephan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]