Search Gradle plugins

com.palantir.idea-test-fix

Configures the IDEA task to ensure that Gradle unit tests using gradle-test-kit can be run in IntelliJ.

https://github.com/palantir/gradle-idea-test-fix

Sources: https://github.com/palantir/gradle-idea-test-fix

Version 0.1.0 (latest)

Created 10 April 2016.

Configures the IDEA task to ensure that Gradle unit tests using gradle-test-kit can be run in IntelliJ.

Using the plugins DSL:

plugins {
  id("com.palantir.idea-test-fix") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.palantir.ideatestfix:gradle-idea-test-fix:0.1.0")
  }
}

apply(plugin = "com.palantir.idea-test-fix")

Using the plugins DSL:

plugins {
  id "com.palantir.idea-test-fix" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.palantir.ideatestfix:gradle-idea-test-fix:0.1.0"
  }
}

apply plugin: "com.palantir.idea-test-fix"

Learn how to apply plugins to subprojects