Package-level declarations

Types

Link copied to clipboard
@Serializable
data class AnnoyingMetadata(val packageName: String, val javaVersion: Int? = null, val repositories: List<String> = emptyList(), val runtimeLibraries: List<RuntimeLibrary> = emptyList(), val excludes: List<Exclude> = emptyList())
Link copied to clipboard
@Serializable
data class Exclude(val group: String, val module: String)
Link copied to clipboard
@Serializable
data class Relocation(val from: String, val to: String? = null)
Link copied to clipboard
@Serializable
data class RuntimeLibrary(val name: String, val repositories: List<String> = emptyList(), val group: String, val artifact: String, val version: String, val excludes: List<Exclude> = emptyList(), val relocations: List<Relocation> = emptyList())