Merge :core:deserialization:deserialization.common into :core:descriptors.common
This commit is contained in:
+1
-2
@@ -5,10 +5,9 @@
|
||||
|
||||
package org.jetbrains.kotlin.serialization.deserialization
|
||||
|
||||
import org.jetbrains.kotlin.metadata.deserialization.BinaryVersion
|
||||
import org.jetbrains.kotlin.name.ClassId
|
||||
|
||||
data class IncompatibleVersionErrorData<out T : BinaryVersion>(
|
||||
data class IncompatibleVersionErrorData<out T>(
|
||||
val actualVersion: T,
|
||||
val expectedVersion: T,
|
||||
val filePath: String,
|
||||
@@ -12,7 +12,6 @@ dependencies {
|
||||
compile(project(":core:type-system"))
|
||||
compile(kotlinStdlib())
|
||||
compile(project(":kotlin-annotations-jvm"))
|
||||
api(project(":core:deserialization:deserialization.common"))
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -10,7 +10,6 @@ dependencies {
|
||||
compile(project(":core:metadata"))
|
||||
compile(project(":core:util.runtime"))
|
||||
compile(project(":core:descriptors"))
|
||||
compile(project(":core:deserialization:deserialization.common"))
|
||||
compile(commonDep("javax.inject"))
|
||||
}
|
||||
|
||||
|
||||
@@ -1,24 +0,0 @@
|
||||
plugins {
|
||||
kotlin("jvm")
|
||||
id("jps-compatible")
|
||||
}
|
||||
|
||||
jvmTarget = "1.6"
|
||||
javaHome = rootProject.extra["JDK_16"] as String
|
||||
|
||||
dependencies {
|
||||
compile(project(":core:metadata"))
|
||||
api(project(":core:descriptors.common"))
|
||||
compile(project(":core:util.runtime"))
|
||||
compile(commonDep("javax.inject"))
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
"main" { projectDefault() }
|
||||
"test" {}
|
||||
}
|
||||
|
||||
tasks.withType<JavaCompile> {
|
||||
sourceCompatibility = "1.6"
|
||||
targetCompatibility = "1.6"
|
||||
}
|
||||
Reference in New Issue
Block a user