Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 129326 Details for
Bug 269201
[jar exporter] ant file produced by Export runnable jar contains absolute paths instead of relative to workspace
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
ant script modified to use relative paths
runnableRelativePaths.xml (text/xml), 1.91 KB, created by
Thorbjørn Ravn Andersen
on 2009-03-19 05:39:43 EDT
(
hide
)
Description:
ant script modified to use relative paths
Filename:
MIME Type:
Creator:
Thorbjørn Ravn Andersen
Created:
2009-03-19 05:39:43 EDT
Size:
1.91 KB
patch
obsolete
><?xml version="1.0" encoding="UTF-8" standalone="yes"?> ><project default="create_runnable_jar" name="Create Runnable Jar for Project runnableJar with libraries in sub-folder"> > <!--this file was created by Eclipse Runnable JAR Export Wizard--> > <!--ANT 1.7 is required --> > > <property name="workspace" location="C:/eclipse/workspace-runnableJar/" /> > <echo message="workspace=${workspace}" /> > <property name="destdir" location="c:/xx" /> > <echo message="destdir=${destdir}" /> > <property name="destname" value="runnableJarOutput" /> > <echo message="destname=${destname}" /> > <property name="destjar" location="${destdir}/${destname}.jar" /> > <echo message="destjar=${destjar}" /> > <property name="subdirname" value="${destname}_lib" /> > <echo message="subdirname=${subdirname}" /> > <property name="subdir" location="${destdir}/${subdirname}" /> > <echo message="subdir=${subdir}" /> > > <target name="create_runnable_jar"> > <mkdir dir="${destdir}" /> > <jar destfile="${destjar}"> > <manifest> > <attribute name="Main-Class" value="foo.Bar" /> > <attribute name="Class-Path" value=". ${subdirname}/jt400.jar ${subdirname}/logback-classic-0.9.14.jar ${subdirname}/logback-core-0.9.14.jar ${subdirname}/slf4j-api-1.5.6.jar" /> > </manifest> > <fileset dir="${workspace}/runnableJar/bin" /> > <fileset dir="${workspace}/ibm-jtopen-5.0/bin" /> > <fileset dir="${workspace}/logback-0.9.X/bin" /> > <fileset dir="${workspace}/slf4j-api-1.5.X/bin" /> > </jar> > <delete dir="${subdir}" /> > <mkdir dir="${subdir}" /> > > <copy todir="${subdir}"> > <fileset file="${workspace}/ibm-jtopen-5.0/jt400.jar" /> > <fileset file="${workspace}/logback-0.9.X/lib/logback-classic-0.9.14.jar" /> > <fileset file="${workspace}/logback-0.9.X/lib/logback-core-0.9.14.jar" /> > <fileset file="${workspace}/slf4j-api-1.5.X/lib/slf4j-api-1.5.6.jar" /> > </copy> > </target> ></project>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 269201
:
129325
|
129326
|
132288
|
132476
|
222585
|
223065
|
244414