File tree 4 files changed +6
-7
lines changed
core/src/main/kotlin/com/tschuchort/compiletesting
4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
ext. kotlin_version = ' 1.6.21'
3
- ext. embedded_kotlin_version = ' 1.6.21 '
3
+ ext. embedded_kotlin_version = ' 1.7.0-dev-3025 '
4
4
5
5
repositories {
6
6
mavenCentral()
@@ -50,6 +50,9 @@ allprojects {
50
50
mavenCentral()
51
51
google()
52
52
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/' }
53
56
}
54
57
55
58
apply plugin : ' kotlin'
Original file line number Diff line number Diff line change @@ -24,9 +24,6 @@ class KotlinJsCompilation : AbstractKotlinCompilation<K2JSCompilerArguments>() {
24
24
/* * Perform experimental dead code elimination */
25
25
var irDce: Boolean = false
26
26
27
- /* * Perform a more experimental faster dead code elimination */
28
- var irDceDriven: Boolean = false
29
-
30
27
/* * Print declarations' reachability info to stdout during performing DCE */
31
28
var irDcePrintReachabilityInfo: Boolean = false
32
29
@@ -87,7 +84,6 @@ class KotlinJsCompilation : AbstractKotlinCompilation<K2JSCompilerArguments>() {
87
84
args.irProduceKlibFile = irProduceKlibFile
88
85
args.irProduceJs = irProduceJs
89
86
args.irDce = irDce
90
- args.irDceDriven = irDceDriven
91
87
args.irDcePrintReachabilityInfo = irDcePrintReachabilityInfo
92
88
args.irOnly = irOnly
93
89
args.irModuleName = irModuleName
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ kotlin.incremental=false
4
4
kapt.include.compile.classpath =false
5
5
6
6
GROUP =com.github.tschuchortdev
7
- VERSION_NAME =1.4.9-SNAPSHOT
7
+ VERSION_NAME =1.4.9-alpha01
8
8
POM_DESCRIPTION =A library that enables testing of Kotlin annotation processors, compiler plugins and code generation.
9
9
POM_INCEPTION_YEAR =2019
10
10
POM_URL =https\://github.com/tschuchortdev/kotlin-compile-testing
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. ksp_version= ' 1.6.21- 1.0.5'
2
+ ext. ksp_version= ' 1.7.0-Beta-87- 1.0.5-SNAPSHOT '
3
3
}
4
4
5
5
dependencies {
You can’t perform that action at this time.
0 commit comments