Search Gradle plugins

hnct.build

Provides project structure for multiple projects build. Developed for HNCT Company.

https://gitlab.com/hnct.build/plugin

Sources: [Coming soon]

Version 1.3.7

Created 09 October 2019.

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.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.hnct:hnct.build:1.3.7")
  }
}

apply(plugin = "hnct.build")

Using the plugins DSL:

plugins {
  id "hnct.build" version "1.3.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.hnct:hnct.build:1.3.7"
  }
}

apply plugin: "hnct.build"

Learn how to apply plugins to subprojects