Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Access plug-in from Target Platform in ANT build script
Access plug-in from Target Platform in ANT build script [message #660412] Fri, 18 March 2011 11:05
Benjamin Wolff is currently offline Benjamin WolffFriend
Messages: 136
Registered: July 2009
Senior Member
Dear Community,

I'm using a headless AND build script to create a server WAR file from my application (RAP application).
In the build script I create a jar file from a plug-in in my workspace, which is no problem to access. This plug-in has now permanently moved to the Target Platform. So far I could not figure out a way to access the plug-in in the Target Platform.
I accessed the workspace plug-in like this:

        <!-- target: jar-servletbridge.jar -->
	<target name="jar-servletbridge.jar" unless="servletbridge.jar-present">
		<jar destfile="${build.dir}/${webapp.name}/WEB-INF/lib/servletbridge.jar">
			<fileset dir="${servletbridge.dir}/bin">
				<include name="**/*.class" />
			</fileset>
		</jar>
	</target>


The servletbridge.dir variable points to the plug-in in my workspace. Can someone give me a hint on how I can access a plug-in that resides in the Target Platform in the same fashion?

Tank you!

Greetings,
Ben

[Updated on: Fri, 18 March 2011 11:05]

Report message to a moderator

Previous Topic:Unpack plugin in plugin based product
Next Topic:How to add actions to the text hover popup in a TextEditor
Goto Forum:
  


Current Time: Thu Apr 25 12:03:47 GMT 2024

Powered by FUDForum. Page generated in 0.02690 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top