Search Gradle plugins

cj.gradle.EmbeddedTools

Additions to the model-based DSL for deploying Java and Native projects to remote targets

https://github.com/CJBuchel/CJs-EmbeddedTools

Sources: https://github.com/CJBuchel/EmbeddedTools

Version 2019.9.19.3 (latest)

Created 19 September 2019.

Additions to the model-based DSL for deploying Java and Native projects to remote targets

Using the plugins DSL:

plugins {
  id("cj.gradle.EmbeddedTools") version "2019.9.19.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.cj.gradle:CJs-EmbeddedTools:2019.9.19.3")
  }
}

apply(plugin = "cj.gradle.EmbeddedTools")

Using the plugins DSL:

plugins {
  id "cj.gradle.EmbeddedTools" version "2019.9.19.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.cj.gradle:CJs-EmbeddedTools:2019.9.19.3"
  }
}

apply plugin: "cj.gradle.EmbeddedTools"

Learn how to apply plugins to subprojects