Skip to main content



      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 07:05
Eclipse UserFriend
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 07:05] by 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 Jul 10 01:24:47 EDT 2025

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

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

Back to the top