io.github.1c-syntax.bslls-dev-tools
Owner: Maximov Valery
BSLLS Development tools gradle plugin
https://github.com/1c-syntax/bslls-dev-tools
Sources: https://github.com/1c-syntax/bslls-dev-tools.git
Version 0.8.1 (latest)
0.8.1
Created 10 July 2024.
BSLLS Development tools gradle plugin
Using the plugins DSL:
plugins {
id("io.github.1c-syntax.bslls-dev-tools") version "0.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.1c-syntax:bslls-dev-tools:0.8.1")
}
}
apply(plugin = "io.github.1c-syntax.bslls-dev-tools")
Using the plugins DSL:
plugins {
id "io.github.1c-syntax.bslls-dev-tools" version "0.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.1c-syntax:bslls-dev-tools:0.8.1"
}
}
apply plugin: "io.github.1c-syntax.bslls-dev-tools"