com.autonomousapps.internal.utils.Files.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-analysis-gradle-plugin Show documentation
Show all versions of dependency-analysis-gradle-plugin Show documentation
Analyzes dependency usage in Android and JVM projects
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.internal.utils
import java.io.File
internal object Files {
fun relativize(file: File, after: String): String {
return file.absoluteFile.invariantSeparatorsPath.substringAfter(after)
}
fun asPackagePath(file: File): String {
return relativize(file, "build/classes/kotlin/main/")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy