Search Gradle plugins

Version 0.1.4 (latest)

Created 28 September 2022.

Integrates nvcc with the Gradle build system

Using the plugins DSL:

plugins {
  id("io.github.jbcbezerra.nvcc") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jbcbezerra:gradle-nvcc:0.1.4")
  }
}

apply(plugin = "io.github.jbcbezerra.nvcc")

Using the plugins DSL:

plugins {
  id "io.github.jbcbezerra.nvcc" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jbcbezerra:gradle-nvcc:0.1.4"
  }
}

apply plugin: "io.github.jbcbezerra.nvcc"

Learn how to apply plugins to subprojects