com.varabyte.kobweb.project.common.PackageUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kobweb-processor-common Show documentation
Show all versions of kobweb-processor-common Show documentation
Common code shared between KSP and Gradle code responsible for processing a Kobweb project
The newest version!
package com.varabyte.kobweb.project.common
object PackageUtils {
/**
* Given a value that is potentially a package shortcut (e.g. ".pages"), get its fully qualified name,
* e.g. ".pages" -> "org.example.pages"
*/
fun resolvePackageShortcut(group: String, pkg: String): String {
return when {
pkg.startsWith('.') -> "$group$pkg"
else -> pkg
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy