Skip to content

Commit

Permalink
fix: add minimal eclipse product to repository
Browse files Browse the repository at this point in the history
...to fix the artifact previously used being no longer available.
  • Loading branch information
stempler committed Oct 20, 2023
1 parent 3b1701f commit 2799206
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ Via the platform extension there are several settings you can provide:
* **updateSiteDir** - the directory the generated p2 repository is written to (default: `new File(buildDir, 'updatesite')`)
* **updateSiteZipFile** - the target file for the zipped p2 repository (default: `new File(buildDir, 'updatesite.zip')`)
* **eclipseHome** - File object pointing to the directory of a local Eclipse installation to be used for generating the p2 repository (default: `null`)
* **eclipseMirror** - Eclipse download URLs to be used when no local installation is provided via *eclipseHome*. Uses https://dl.bintray.com/simon-scholz/eclipse-apps/eclipse-p2-minimal.tar.gz by default.
* **eclipseMirror** - Eclipse download URLs to be used when no local installation is provided via *eclipseHome*. Uses https://raw.githubusercontent.com/stempler/bnd-platform/master/eclipse/eclipse-p2-minimal.tar.gz by default.
* **downloadsDir** - the directory to store the downloaded Eclipse installation on local, this works if *eclipseHome* is not specified. (default: `new File(buildDir, 'eclipse-downloads')`)
* **generatePlatformFeature** - States if a general feature should be created. In case custom features are generated you might not want to have an additional "generated platform feature" besides your own features. (default: **true**)
* **featureId** - the identifier of the feature including the platform bundles that will be available in the created update site (default: **'platform.feature'**)
Expand Down
Binary file added eclipse/eclipse-p2-minimal.tar.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class PlatformPluginExtension {
* 4.8 MB *.tar.gz file, which contains the minimal setup of eclipse plug-ins,
* which are necessary to build an eclipse p2 update site.
*/
def eclipseMirror = 'http://dl.bintray.com/simon-scholz/eclipse-apps/eclipse-p2-minimal.tar.gz'
def eclipseMirror = 'https://raw.githubusercontent.com/stempler/bnd-platform/master/eclipse/eclipse-p2-minimal.tar.gz'

/**
* Call feature to create a feature configuration.
Expand Down

0 comments on commit 2799206

Please sign in to comment.