Bug 578015 - [OS X] Add entitlements for keychain-access-groups

Add an entitlement to use the keychain access group
"com.apple.ssh.passphrases". This enables Eclipse bundles
to read passphrases of SSH private keys stored by Apple's
OpenSSH in the OS X keychain. It also enables Eclipse bundles
to store items in the OS X keychain in such a way that Apple's
OpenSSH can find and access them.

This enables EGit/JGit to integrate better with the command-line
tools available on OS X; in particular, it will be able to handle
the Mac-specific "UseKeychain yes" setting in ~/.ssh/config for
git operations using SSH URLs the same way as command-line git
using Apple's OpenSSH does.

Change-Id: I1331ea85821ce4e81e61e44d1e45b6c607a82577
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.releng.aggregator/+/189228
Tested-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Reviewed-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
3 files changed
tree: ef99c0c5573cc796b4ab7d0ad701db1d8f8a0d42
  1. .mvn/
  2. .settings/
  3. cje-production/
  4. eclipse-platform-parent/
  5. eclipse-platform-sources/
  6. eclipse.platform.releng.prereqs.sdk/
  7. eclipse.platform.releng.tychoeclipsebuilder/
  8. JenkinsJobs/
  9. production/
  10. scripts/
  11. .gitignore
  12. .gitmodules
  13. .project
  14. CONTRIBUTING
  15. Jenkinsfile
  16. LICENSE
  17. NOTICE
  18. pom.xml
  19. README.md
README.md

Aggregator repo for Eclipse SDK builds

This repo is used to build the Eclipse SDK which provides the framework for Eclipse based applications, the Java development tooling and the Plug-in development tooling. To clone it, it is recommented to use one of the URLs found on the following website: https://git.eclipse.org/r/#/admin/projects/platform/eclipse.platform.releng.aggregator

An anonymous clone can be done via the following command:

git clone https://git.eclipse.org/r/platform/eclipse.platform.releng.aggregator

How to build the Eclipse SDK

To run a complete build, on your local machine, run the following commands. The -DskipTests=true will skip the tests which take a significant time to run, e.g., up to 10 hours.

# clean up "dirt" from previous build see Bug 420078
git submodule foreach git clean -f -d -x
git submodule foreach git reset --hard HEAD
git clean -f -d -x
git reset --hard HEAD

# update master and submodules
git checkout master
git pull --recurse-submodules
git submodule update

# run the build
mvn clean verify  -DskipTests=true

# find the results in
# eclipse.platform.releng.tychoeclipsebuilder/sdk/target/products/*

Build requirements

The build commands require the installation and setup of Java 1.8 or higher and Maven version 3.5.4 or higher. See also the complete instructions on the Platform Build wiki. Note, it is highly recommended to use toolchains.xml and -Pbree-libs as decribed in Using BREE Libs.

Additional informations

Eclipse Platform Project committers should also read Automated Platform Builds.

Release Engineers should also be familiar with other documents on the Releng Wiki.

License

Eclipse Public License (EPL) v1.0