
org.http4k.util.loadMetaResource.kt Maven / Gradle / Ivy
package org.http4k.util
internal inline fun loadMetaResource(resource: String) =
T::class.java.getResourceAsStream("/META-INF/${T::class.java.`package`.name.replace('.', '/')}/$resource")
?: throw IllegalStateException("Could not find '$resource' inside META-INF. If using Shadow JAR, add mergeServiceFiles() to the configuration")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy