Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-ant-dev] Exporting Features/Plugins

Gregor,

The PDE UI generated build files require the Eclipse UI etc and are not
designed to be used for headless or automated builds.
For pointers and docs about automating your build please start at:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=87151

For further user questions please make use of the eclipse newsgroups

HTH
Darins

----- Original Message -----
From: "Gregor Weckbecker" <test@xxxxxxxxxxxxxx>
To: <platform-ant-dev@xxxxxxxxxxx>
Sent: Thursday, March 24, 2005 8:36 AM
Subject: [platform-ant-dev] Exporting Features/Plugins


Hello,

today i tried to create nightly for our Eclipse Plugin Project.
By doing this job, i came to the point where i wanted to export
a feature from eclipse. I tried the export option of eclipse and
saved the ant file. So i had something like this:

<?xml version="1.0" encoding="UTF-8"?>
<project name="build" default="feature_export"
basedir="D:\\user/weckbecker/Kalypso/KalypsoCore">
 <target name="feature_export">
    <pde.exportFeature features="org.kalypso.enterprise"
      destination="D:\user\weckbecker"
      filename="plugin.zip"
    />
  </target>
</project>

As expected it didn't work. So i this filles in my classpath:
* pdeuiant.jar
* pdeui.jar
* pdecore.jar
* osgi.jar
* runtime.jar
and added the following line:
  <taskdef name="pde.exportFeature"
classname="org.eclipse.pde.internal.ui.ant.FeatureExportTask"
classpathref="pde.classpath" />

But it didn't work. I've attached the ant ant-output with the '-debug'
option.

Thanks!

Gregor

--
have a look at feiner-fug.net

_______________________________________________
platform-ant-dev mailing list
platform-ant-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-ant-dev




Back to the top