Search Gradle plugins

Version 0.5

Created 21 October 2019.

The plugin allow to use LLVM library.

Using the plugins DSL:

plugins {
  id("loggersoft.cpp-llvm") version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.loggersoft:cpp-llvm:0.5")
  }
}

apply(plugin = "loggersoft.cpp-llvm")

Using the plugins DSL:

plugins {
  id "loggersoft.cpp-llvm" version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.loggersoft:cpp-llvm:0.5"
  }
}

apply plugin: "loggersoft.cpp-llvm"

Learn how to apply plugins to subprojects