Files
kotlin-fork/libraries/tools/kotlin-project-model/src/main/kotlin/KpmModuleDependency.kt
T
sebastian.sellmair e55f00c3d9 [kpm] Introduce Kpm* naming convention (2/2)
All Kpm owned entities shall be disambiguated by using the `Kpm` prefix
E.g. MyEntity has to be called KpmMyEntity and a subclass is called
KpmSpecialMyEntity
2022-05-25 13:15:41 +00:00

16 lines
605 B
Kotlin

/*
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.project.model
data class KpmModuleDependency(val moduleIdentifier: KpmModuleIdentifier) {
override fun toString(): String = "dependency $moduleIdentifier"
}
/**
* TODO other kinds of dependencies: non-Kotlin: cinterop, CocoaPods, NPM dependencies?
* support with different moduleIdentifiers? Introduce other kinds of dependencies than ModuleDependency?
*/