Search Gradle plugins

com.palantir.conjure-local

Gradle Conjure is a build tool which allows defining and generating code for Conjure APIs in Java projects.

https://github.com/palantir/gradle-conjure

Sources: https://github.com/palantir/gradle-conjure

Version 5.36.0

Created 21 March 2023.

Gradle conjure is a gradle plugin integration for conjure generators

Using the plugins DSL:

plugins {
  id("com.palantir.conjure-local") version "5.36.0"
}

Using legacy plugin application:

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

apply(plugin = "com.palantir.conjure-local")

Using the plugins DSL:

plugins {
  id "com.palantir.conjure-local" version "5.36.0"
}

Using legacy plugin application:

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

apply plugin: "com.palantir.conjure-local"

Learn how to apply plugins to subprojects