Search Gradle plugins

Version 1.4.1 (latest)

Created 24 January 2022.

Conjure TypeScript generators compatible with gradle typescript

Using the plugins DSL:

plugins {
  id("com.gradlets.conjure-typescript-local") version "1.4.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.4.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects