Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] PDE Build 3.0


Hi,

PDE-Build supports your use case.

You can build against an already existing instance of Eclipse (that's how GEF is being built).
However there is no explicit support for file deletion, but the various hooks provided should give you enough opportunities to do that
For example in  the pre-process phase, you can get the eclipse.zip file, extract it and delete the files.

It is possible to use the PDE build without CVS. You can either comment, the fetch phase in the build.xml or try to do nothing in the pre-fetch in the customTarget.xml.
Note that there is a bug report on support for other SCM (https://bugs.eclipse.org/bugs/show_bug.cgi?id=34757), and I'm welcoming all patches :-)

Package.xml is not used in the build process. Package.xml can be compared to build.xml, in the sense that it provides basic steps to drive call to generated scripts. It is used
to package products. In the builder terminology "packaging" means taking a all bunch of already built product and create a common zip from them (for example we could create eclipse-sdk
using the packager , packaging : platform binary, jdt runtime binary, and pde).

HTH,

        PaScaL


Gunnar Wagenknecht <G.Wagenknecht@xxxxxxxxxxxx>
Sent by: pde-dev-admin@xxxxxxxxxxx

08/28/2003 03:36 AM
Please respond to pde-dev

       
        To:        "'pde-dev@xxxxxxxxxxx'" <pde-dev@xxxxxxxxxxx>
        cc:        
        Subject:        [pde-dev] PDE Build 3.0



Hi!

I'm evaluating a build process for our branded Eclipse based on the
org.eclipse.releng.basebuilder. We don't use CVS and we don't want to
compile Eclipse itself. Instead we are using the released ZIP files, extract
them and delete unwanted files (the launcher).

Is it possible to use the PDE Build 3.0 with other or without SCM systems
(like ClearCase)? Which role plays the package.xml in the "scripts"
directory of the PDE build plugin? I looked through the eclipsebuilder and
it doesn't seem to get called.

Thanks, Gunnar
_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/pde-dev



Back to the top