Search Gradle plugins

com.triplequote.hydra

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 1.1.1 (latest)

Created 20 September 2019.

Integrates Triplequote Hydra with the Gradle build tool. Triplequote Hydra is the world's only parallel compiler for the Scala language. Head over to https://triplequote.com/hydra/trial and get started with Hydra in less than 5 minutes!

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.triplequote.gradle:hydra:1.1.1")
  }
}

apply(plugin = "com.triplequote.hydra")

Using the plugins DSL:

plugins {
  id "com.triplequote.hydra" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.triplequote.gradle:hydra:1.1.1"
  }
}

apply plugin: "com.triplequote.hydra"

Learn how to apply plugins to subprojects