Represent classes serialized to the instant execution cache using an integer id, rather than a string class name.

Apart from reducing the amount of stuff written to the cache, this will also allow multiple classes with the same name (but different ClassLoaders) to be referenced in the instant execution state.
9 files changed
tree: 1c25bc87c52c27ea816e55abd3b8fac85205298e
  1. .github/
  2. .idea/
  3. .teamcity/
  4. .teamcityTest/
  5. buildSrc/
  6. config/
  7. gradle/
  8. subprojects/
  9. .editorconfig
  10. .gitattributes
  11. .gitignore
  12. .mailmap
  13. .tm_properties
  14. .travis.yml
  15. build.gradle.kts
  16. CONTRIBUTING.md
  17. gradle.png
  18. gradle.properties
  19. gradlew
  20. gradlew.bat
  21. LICENSE
  22. README.md
  23. released-versions.json
  24. settings.gradle.kts
  25. version.txt
README.md

Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites. Gradle has been designed to support build automation across multiple languages and platforms including Java, Scala, Android, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers including Eclipse, IntelliJ, and Jenkins.

For more information about Gradle, please visit: https://gradle.org

This project adheres to the Gradle Code of Conduct. By participating, you are expected to uphold this code.

Downloading

You can download released versions and nightly build artifacts from: https://gradle.org/downloads

Installing from source

To create an install from the source tree you can run either of the following:

./gradlew install -Pgradle_installPath=/usr/local/gradle-source-build

This will create a minimal installation; just what's needed to run Gradle (i.e. no docs).

You can then build a Gradle based project with this installation:

/usr/local/gradle-source-build/bin/gradle «some task»

To create a full installation (includes docs):

./gradlew installAll -Pgradle_installPath=/usr/local/gradle-source-build

Contributing

If you're looking to contribute to Gradle or provide a patch/pull request, you can find more info here.