e55f00c3d9
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
16 lines
605 B
Kotlin
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?
|
|
*/
|