hnct.build
Owner: Ryan Truong
Provides project structure for multiple projects build. Developed for HNCT Company.
https://gitlab.com/hnct.build/plugin
Sources: [Coming soon]
Version 1.3.11-beta7 (latest)
1.3.11-beta7
Created 12 December 2023.
Allow easily setting up dependencies among source sets from multiple projects. Allow easily configure languages to be used, either Scala or Java. Shorten syntax to configure repository dependency. Contain distribution tasks that package all dependencies into lib folder.
Using the plugins DSL:
plugins {
id("hnct.build") version "1.3.11-beta7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.hnct:hnct.build:1.3.11-beta7")
}
}
apply(plugin = "hnct.build")
Using the plugins DSL:
plugins {
id "hnct.build" version "1.3.11-beta7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.hnct:hnct.build:1.3.11-beta7"
}
}
apply plugin: "hnct.build"