you can search in the IntellyyJ IDEA dcoumentation: 
http://www.jetbrains.com/idea/webhelp/

in a quick scan I have not found such a feature.

Further information on the Eclipse plugin: http://fjep.sourceforge.net/
Here they link also to another tool: http://one-jar.sourceforge.net/


perhaps ANT is a way to work. Here is a sample ant script which is
produce by eclipse:

--------------START ANT FILE ------------------
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="create_run_jar" name="Create Runnable Jar for
Project JBookTrader-7.04">
    <!--this file was created by Eclipse Runnable JAR Export Wizard-->
    <!--ANT 1.7 is required                                        -->
    <target name="create_run_jar">
        <jar destfile="C:/Java/Trading/JBookTrader-7.04/dist/
jbt704.jar" filesetmanifest="mergewithoutmain">
            <manifest>
                <attribute name="Built-By" value="${user.name}"/>
                <attribute name="Main-Class"
value="com.jbooktrader.platform.startup.JBookTrader"/>
                <attribute name="Class-Path" value="."/>
            </manifest>
            <fileset dir="C:/Java/Trading/JBookTrader-7.04/classes"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/commons-net-2.0.jar"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/ibapi-9.62.jar"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/jcalendar-1.3.3.jar"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/jcommon-1.0.16.jar"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/jfreechart-1.0.13.jar"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/junit-4.5.jar"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/substance-5.2.jar"/>
            <zipfileset excludes="META-INF/*.SF" src="C:/Java/Trading/
JBookTrader-7.04/lib/substance-extras-5.1.jar"/>
            <fileset dir="C:/Java/Trading/JBookTrader-7.04/resources"/
>
        </jar>
    </target>
</project>
--------------END ANT FILE -----------------


my recommendation: use Eclipse ;-) for jarifying


On Sep 13, 10:38 pm, Chronos Phenomena <[email protected]>
wrote:
> Is there similar way of doing this in idea?
>
> On Sep 10, 8:04 pm, new_trader <[email protected]> wrote:
>
> > in the files section you will finda modded version of 
> > ClassFinder.javahttp://groups.google.com/group/jbooktrader/web/ClassFinder.java
>
> > when building
> > a single jar file file qith eclipse 3.4 and running it from command
> > line, this modded version enables jbt to load the strategies from
> > within the single jar files
> > external jar files carrying the strategies are no support
>
> > NOTE: this is a heavy quick hack
> > please test thorougly , no warranty esspecially for live trading
> > I would suggest that the experienced java guys do some QA and improve
> > the coding to make it more pretty ;-)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"JBookTrader" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jbooktrader?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to