Search Gradle plugins

Version 1.0.2

Created 16 April 2020.

A gradle plugin that integrates xmake seamlessly

Using the plugins DSL:

plugins {
  id("org.tboox.gradle-xmake-plugin") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.tboox:gradle-xmake-plugin:1.0.2")
  }
}

apply(plugin = "org.tboox.gradle-xmake-plugin")

Using the plugins DSL:

plugins {
  id "org.tboox.gradle-xmake-plugin" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.tboox:gradle-xmake-plugin:1.0.2"
  }
}

apply plugin: "org.tboox.gradle-xmake-plugin"

Learn how to apply plugins to subprojects