This project builds Eclipse including the ADT plugin. The result is a portable version of Eclipse including the ABAP development tools. This portable Version can be used by SAP developers to run their own Eclipse version from a folder, USB drive, or by Citrix admins to provide ADT in a Citrix environment.
The short version to get your version of Eclipse + ADT:
npm i
npm startThe resulting zip file eclipse-dist.zip in the folder ./dist is your (portable) Eclipse + ADT.
SAP developers need as an IDE Eclipse with ADT to be able to develop (modern) SAP applications. Features like CDS or RAP are only available in ADT. The installation of ADT is, however, a manual task. Many times, this task is directed to the SAP developers. Meaning: the SAP developer is responsible of building his own IDE. In managed scenarios, where ADT is provided as a package and installed automtically on the developers laptop, the installations are many times outdated. The same holds true for Citrix environments. The bundling of Eclipse with ADT is a manual task. The people charged with this task do this not regularly, resulting in errors during builds and a long time between shipped ADT versions to the SAP developers. Too often, SAP developers have then work with an outdated ADT in Citrix or on their corporate computer. While Eclipse can be used to update ADT automatically, this often does not work due to proxy restrictions, specially in Citrix environments.
The goal of this project is provide a tool that builds a ADT bundle on top of Eclipse. This should ereduce the manual work involved and allow companies to ship the latest ADT version fast to their SAP developers.
Have a (automatic) build of Eclipse with ADT included that can be used by SAP developers. The resulting ADT bundle is mainly intended to be used on Citrix. It can also provided as an all-in-one bundle to SAP developers for their computers (laptops). With this, SAP developers do not need to build their own ADT via the "official" way of downloading Eclipse and adding ADT manually. Windows Teams do not have to build their own ADT bundle manually and distribute it to SAP developer laptops. They can use this bundle; either as-is or as a starting point to add additional plugins.
For Citrix environments, this bundle can be used to easily build a new ADT and provide it to SAP developers working on Citrix.
The target platform of the ADT bundle is: Windows
The latest LTS release from Node.js should be used. As the build is for Windows, a node version manager (nvm) is recommended to install Node.js. Here are some information on how to install Node.js on Windows:
- https://learn.microsoft.com/de-de/windows/dev-environment/javascript/nodejs-on-windows
- https://github.com/coreybutler/nvm-windows#installation--upgrades
The target is a Windows version of Eclipse and ADT. Therefore, a Windows computer is required to run the build. The build is done by the Eclipse P2 Director. An Eclipse version is used as the foundation for the build.
The build is done by running a set of GruntJS plugins. The starting point of the build process is the downloaded Eclipse ZIP. As Eclipse is not offering a default download URL to get the latest version, the URL needs to be provided manually.
An example URL:
From the download page of Eclipse select the Java package.
Click on download and the extract the URL of the file from the download history / URL.
The project is delivered with the intention that no additional configuration is needed. Starting the build process will result in a portable Eclipse version ready to be used by SAP developers.
The build configuration can be adjusted by changing the used Eclipse version, or by changing the list of the installed plugins.
The Eclipse download URL needs to be added as a parameter to the download task in the file Gruntfile.ks
downloadfile: {
options: {
dest: './downloads',
overwriteEverytime: true
},
files: {
'eclipse.zip': 'https://ftp.halifax.rwth-aachen.de/eclipse/technology/epp/downloads/release/2025-12/R/eclipse-jee-2025-12-R-win32-x86_64.zip'
}
},The build will only add the ADT plugins. All available ADT plugins will be added, including e.g. the ones for WebDynpro ABAP development. The plugins to be installed are povided in the exec parameter:
exec: {
eclipse: {
command: 'build\\eclipse\\eclipse.exe -application org.eclipse.equinox.p2.director -repository https://download.eclipse.org/releases/2025-12,https://tools.hana.ondemand.com/latest,https://sap.github.io/abap-cleaner/updatesite,https://fidley.github.io/ADTPluginsUpdateSite/UpdateSite/,https://leuc.de/abapquickfixs4c -installIU com.sap.adt.tools.bopf.devedition.feature.group,com.sap.adt.core.devedition.feature.group,com.sap.adt.tools.hana.devedition.feature.group,com.sap.adt.wda.core.devedition.feature.group,com.sap.adt.pitools.tlf.devedition.feature.group,com.sap.adt.abapcleaner.feature.feature.group,com.abapblog.adt.quickfix.feature.feature.group,com.abapblog.adt.extension.feature.feature.group,de.leuc.adt.quickfix.feature.group -tag AddADT -destination .\\build\\eclipse -profile epp.package.jee',
stdout: true,
stderr: true
},
},The build is started by running:
npm i
npm startThe resulting file eclipse-dist.zip is stored in the folder dist.
The ADT bundle is created using the Eclipse P2 Director application. The build process will instruct the p2 director appplication to connect to the Eclipse update site and to the ADT toooling site to resolve dependencies.
A latest Eclipse (Java Bundle) is used as the source for building the ADT bundle. Eclipse Downloads: https://www.eclipse.org/downloads/packages/
URL for Eclipse JEE: Mirror 1045
- Eclipse Update site: 2025-12 - https://download.eclipse.org/releases/2025-12
- Update site ADT https://tools.hana.ondemand.com/latest
- Update site ABAP Cleaner https://sap.github.io/abap-cleaner/updatesite
- Update site ABAP Quick Fix, Favorites, Commands https://fidley.github.io/ADTPluginsUpdateSite/UpdateSite/
- Update site Additional Quick Fixes S4 Conversion https://leuc.de/abapquickfixs4c
The following ADT tools / features will be installed:
- com.sap.adt.tools.bopf.devedition.feature.group
- com.sap.adt.core.devedition.feature.group
- com.sap.adt.tools.hana.devedition.feature.group
- com.sap.adt.wda.core.devedition.feature.group
- com.sap.adt.pitools.tlf.devedition.feature.group
The DSAG ADT Guide / Leitfaden lists several ADT plugins worth using. Some of those are added automatically to the ADT build. These are the plugins: ABAP Cleaner, ADT Extensions, Quick Fixes and Quick Fixes for S4 Conversion
- com.sap.adt.abapcleaner.feature.feature.group
- com.abapblog.adt.quickfix.feature.feature.group
- com.abapblog.adt.extension.feature.feature.group
- de.leuc.adt.quickfix.feature.group
- ABAP_Favorites_Feature_Project.feature.group
(further add-ons)
- Further add-ons can be added manually. If you have a request to get an add-on added to the build process of the ADT bundle builder, please open an issue on the GitHub project page: https://github.com/tobiashofmann/adt-bundle-builder
The command to run Eclipse and install ADT is not run by GruntJS. Npm will run the command in a shell. This is because running the command from GruntJS resulted in performance problems or even crashed.
The build runs several Grunt tasks.
grunt.registerTask('1', ['clean:all']);
grunt.registerTask('2', ['mkdir:build']);
grunt.registerTask('3', ['downloadfile']);
grunt.registerTask('4', ['unzip']);
grunt.registerTask('5', ['zip']);
grunt.registerTask('6', ['clean:build']);You can run them individually. Either by running npx grunt [[taskid]] like npx grunt 1 or using npm. Please note that Grunt is not used to run the Eclipse packaging step. The shell is used for this.
npm run clean
npm run prepare
npm run download
npm run unzip
npm run shell
npm run zip
npm run cleanupRunning the complete build process is not necessary. Given that an Eclipse version is available, the P2 director application can be run separately. The command used to add ADT to the Eclipse installation is given here. This is the same command used by the npm task.
p2 Director Application: eclipsec.exe
Command:
build\eclipse\eclipsec.exe -application org.eclipse.equinox.p2.director -repository https://download.eclipse.org/releases/2025-12,https://tools.hana.ondemand.com/latest,https://sap.github.io/abap-cleaner/updatesite,https://fidley.github.io/ADTPluginsUpdateSite/UpdateSite/,https://leuc.de/abapquickfixs4c -installIU com.sap.adt.tools.bopf.devedition.feature.group,com.sap.adt.core.devedition.feature.group,com.sap.adt.tools.hana.devedition.feature.group,com.sap.adt.wda.core.devedition.feature.group,com.sap.adt.pitools.tlf.devedition.feature.group,com.sap.adt.abapcleaner.feature.feature.group,com.abapblog.adt.quickfix.feature.feature.group,com.abapblog.adt.extension.feature.feature.group,de.leuc.adt.quickfix.feature.group,ABAP_Favorites_Feature_Project.feature.group -tag AddADTBundle -destination .\\build\\eclipse -profile epp.package.jee -destination .\\build\\eclipse -profile epp.package.jee


