noelware

fun DependencyHandler.noelware(group: String, module: String, version: String, type: String = "implementation"): Dependency

Adds a dependency to the package that is imported from Noelware's Maven repository (located at maven.noelware.org/[snapshots]).

The modules that can be imported with this function are:

Parameters

group

The module group to import from.

module

The module name to import from.

version

The version of the module to import from.

type

The dependency type, can be implementation or api.


fun KotlinDependencyHandler.noelware(group: String, module: String, version: String, type: String = "implementation"): Dependency

Adds a dependency to the package that is imported from Noelware's Maven repository (located at maven.noelware.org).

Parameters

group

The module group to import from.

module

The module name to import from.

version

The version of the module to import from.

type

The dependency type, can be implementation or api.


fun RepositoryHandler.noelware(snapshots: Boolean = false)

Adds the Noelware Maven repository to the current repository handler.

Parameters

snapshots

If the repository should be configured to use snapshot releases.