Search Gradle plugins

Hydra integration with the Gradle build tool. Hydra is the world's only parallel compiler for the Scala language.

https://www.triplequote.com

Sources: https://github.com/triplequote/gradle-hydra-plugin

Version 0.0.2

Created 04 June 2018.

Integrates the Triplequote Hydra Scala compiler with the Gradle build tool. Triplequote Hydra is the world's only parallel compiler for the Scala language. Read more on https://www.triplequote.com/hydra and get in touch to obtain a free 15-days evaluation license.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.triplequote.hydra") version "0.0.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.triplequote.hydra:com.triplequote.hydra.gradle.plugin:0.0.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.triplequote.hydra")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.triplequote.hydra:com.triplequote.hydra.gradle.plugin:0.0.2")
      }
    }
    
    apply(plugin = "com.triplequote.hydra")
  • Applying plugins to all subprojects .