Search Gradle plugins

com.ullink.nunit

Owner: Itiviti

gradle-nunit-plugin is a Gradle plugin that enables NUnit testing

https://github.com/Itiviti/gradle-nunit-plugin

Version 2.9

Created 11 April 2023.

gradle-nunit-plugin is a Gradle plugin that enables NUnit testing

Using the plugins DSL:

plugins {
  id("com.ullink.nunit") version "2.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ullink.gradle:gradle-nunit-plugin:2.9")
  }
}

apply(plugin = "com.ullink.nunit")

Using the plugins DSL:

plugins {
  id "com.ullink.nunit" version "2.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ullink.gradle:gradle-nunit-plugin:2.9"
  }
}

apply plugin: "com.ullink.nunit"

Learn how to apply plugins to subprojects