org.caffinitas.gradle.compilecommand
Owner: Robert Stupp
Generate a file suitable for -XX:CompileCommandFile= using net.nicoulaj.compile-command-annotations:compile-command-annotations
https://github.com/snazy/gradle-compilecommand/
Sources: https://github.com/snazy/gradle-compilecommand/
Version 0.1.2 (latest)
0.1.2
Created 03 June 2020.
Generate a file suitable for -XX:CompileCommandFile= using net.nicoulaj.compile-command-annotations:compile-command-annotations
Using the plugins DSL:
plugins {
id("org.caffinitas.gradle.compilecommand") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.caffinitas.gradle.compilecommand:gradle-compilecommand:0.1.2")
}
}
apply(plugin = "org.caffinitas.gradle.compilecommand")
Using the plugins DSL:
plugins {
id "org.caffinitas.gradle.compilecommand" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.caffinitas.gradle.compilecommand:gradle-compilecommand:0.1.2"
}
}
apply plugin: "org.caffinitas.gradle.compilecommand"