Search Gradle plugins

Version 1.3.1

Created 08 August 2021.

Conjure TypeScript generators compatible with gradle typescript

Using the plugins DSL:

plugins {
  id("com.gradlets.conjure-typescript-local") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.gradlets.gradle.typescript:gradle-conjure-typescript:1.3.1")
  }
}

apply(plugin = "com.gradlets.conjure-typescript-local")

Using the plugins DSL:

plugins {
  id "com.gradlets.conjure-typescript-local" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradlets.gradle.typescript:gradle-conjure-typescript:1.3.1"
  }
}

apply plugin: "com.gradlets.conjure-typescript-local"

Learn how to apply plugins to subprojects