into

fun into(compileConfiguration: String?, runtimeConfiguration: String?, entries: Iterable<LwjglEntry>)
fun into(compileConfiguration: Named?, runtimeConfiguration: String?, entries: Iterable<LwjglEntry>)
fun into(compileConfiguration: String?, runtimeConfiguration: Named?, entries: Iterable<LwjglEntry>)
fun into(compileConfiguration: Named?, runtimeConfiguration: Named?, entries: Iterable<LwjglEntry>)

Registers LWJGL modules on the specified configuration.

The selected modules will:

Parameters

compileConfiguration

The configuration that receives the LWJGL Java artifacts. Use null to suppress Java artifacts entirely.

runtimeConfiguration

The configuration that receives the LWJGL native artifacts. Use null to suppress native artifacts.

entries

A collection of LwjglEntry values to register on the implementation configuration.


fun into(compileConfiguration: String?, runtimeConfiguration: String?, vararg entries: LwjglEntry)
fun into(compileConfiguration: Named?, runtimeConfiguration: String?, vararg entries: LwjglEntry)
fun into(compileConfiguration: String?, runtimeConfiguration: Named?, vararg entries: LwjglEntry)
fun into(compileConfiguration: Named?, runtimeConfiguration: Named?, vararg entries: LwjglEntry)

Registers LWJGL modules on the specified configuration.

The selected modules will:

Parameters

compileConfiguration

The configuration that receives the LWJGL Java artifacts. Use null to suppress Java artifacts entirely.

runtimeConfiguration

The configuration that receives the LWJGL native artifacts. Use null to suppress native artifacts.

entries

One or more LwjglEntry values to register on the implementation configuration.