Search Gradle plugins

Version 2.1.4 (latest)

2.1.4

Created 22 May 2019.

FaceService for Soeren Project of ZHAW

Using the plugins DSL:

plugins {
  id("org.soeren.faceservice") version "2.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.soeren.faceservice:faceservice:2.1.4")
  }
}

apply(plugin = "org.soeren.faceservice")

Using the plugins DSL:

plugins {
  id "org.soeren.faceservice" version "2.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.soeren.faceservice:faceservice:2.1.4"
  }
}

apply plugin: "org.soeren.faceservice"

Learn how to apply plugins to subprojects