Prashant, I have not been able to figure out how to get Intellij to
produce a build script, I wrote my own.

Click Menu > Build Choose Generate ANT Build option. I am using 4.5 version of Intellij

Thanks, Tom.

-----Original Message-----
From: Peter Reilly [mailto:[EMAIL PROTECTED] Sent: 30 October 2006 20:59
To: Ant Users List
Subject: Re: Package prefix with ant build & ClassNotFoundException

The package of the class has changed, therefore
the classname has changed from ClassName to package.ClassName,
therefore the applet needs to be changed to
refer to the new classname.

Peter

Tom Corcoran wrote:
I am using IntelliJ and have added a package prefix to my swing
project.
If my prefix is "com.mycompany", this means I can have my source in
<src> rather than <src/com/mycompany>. At the moment I can't make
the
physical change due to source control issues.



An ant build works fine but when I run the applet I get a console
message :
java.lang.ClassNotFoundException MyAppletExtension
(where MyAppletExtension extends JApplet).



I am assuming it can't find the class because of the prefix, but
maybe I
am wrong?



The package prefix is contained in a Intellij inc file.  What do I
need
to change in the build file (see below) so it can find the classes?



Thanks a lot,


Tom.



Here's the ant parameters:

<property name="src" location="src"/>
<property name="build" location="classes"/>
<property name="dist" location="jar"/>

with targets :

<target name="compile">
<javac srcdir="${src}" destdir="${build}"/>
</target>

<target name="dist" depends="compile">
<jar jarfile="${dist}/MyApplet.jar" basedir="${build}"/>
</target>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to