com.github.maiflai.scalatest
Owner: May Fly
A plugin to enable the use of scalatest in a gradle scala project.
https://github.com/maiflai/gradle-scalatest
Version 0.6-2-g0c70497
0.6-2-g0c70497
Created 29 December 2014.
No version description available.
Using the plugins DSL:
plugins {
id("com.github.maiflai.scalatest") version "0.6-2-g0c70497"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.maiflai:gradle-scalatest:0.6-2-g0c70497")
}
}
apply(plugin = "com.github.maiflai.scalatest")
Using the plugins DSL:
plugins {
id "com.github.maiflai.scalatest" version "0.6-2-g0c70497"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.maiflai:gradle-scalatest:0.6-2-g0c70497"
}
}
apply plugin: "com.github.maiflai.scalatest"