Skip to content

Commit 3fb7ab1

Browse files
committed
Alpha release for Kotlin 1.7.0
1 parent 9f23802 commit 3fb7ab1

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

build.gradle

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext.kotlin_version = '1.6.21'
3-
ext.embedded_kotlin_version = '1.6.21'
3+
ext.embedded_kotlin_version = '1.7.0-dev-3025'
44

55
repositories {
66
mavenCentral()
@@ -50,6 +50,9 @@ allprojects {
5050
mavenCentral()
5151
google()
5252
maven { url 'https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap' }
53+
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
54+
maven { url 'https://www.jetbrains.com/intellij-repository/snapshots' }
55+
maven { url 'https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/' }
5356
}
5457

5558
apply plugin: 'kotlin'

core/src/main/kotlin/com/tschuchort/compiletesting/KotlinJsCompilation.kt

-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ class KotlinJsCompilation : AbstractKotlinCompilation<K2JSCompilerArguments>() {
2424
/** Perform experimental dead code elimination */
2525
var irDce: Boolean = false
2626

27-
/** Perform a more experimental faster dead code elimination */
28-
var irDceDriven: Boolean = false
29-
3027
/** Print declarations' reachability info to stdout during performing DCE */
3128
var irDcePrintReachabilityInfo: Boolean = false
3229

@@ -87,7 +84,6 @@ class KotlinJsCompilation : AbstractKotlinCompilation<K2JSCompilerArguments>() {
8784
args.irProduceKlibFile = irProduceKlibFile
8885
args.irProduceJs = irProduceJs
8986
args.irDce = irDce
90-
args.irDceDriven = irDceDriven
9187
args.irDcePrintReachabilityInfo = irDcePrintReachabilityInfo
9288
args.irOnly = irOnly
9389
args.irModuleName = irModuleName

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kotlin.incremental=false
44
kapt.include.compile.classpath=false
55

66
GROUP=com.github.tschuchortdev
7-
VERSION_NAME=1.4.9-SNAPSHOT
7+
VERSION_NAME=1.4.9-alpha01
88
POM_DESCRIPTION=A library that enables testing of Kotlin annotation processors, compiler plugins and code generation.
99
POM_INCEPTION_YEAR=2019
1010
POM_URL=https\://github.com/tschuchortdev/kotlin-compile-testing

ksp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.ksp_version='1.6.21-1.0.5'
2+
ext.ksp_version='1.7.0-Beta-87-1.0.5-SNAPSHOT'
33
}
44

55
dependencies {

0 commit comments

Comments
 (0)