Extract 'test-generator' module out of 'generators'

Also avoid using intellij API where kotlin-stdlib can be used instead
This commit is contained in:
Alexander Udalov
2017-10-19 18:11:51 +02:00
parent d79b571781
commit d0274c3c53
14 changed files with 173 additions and 98 deletions
@@ -0,0 +1,17 @@
apply { plugin("kotlin") }
dependencies {
testCompile(project(":core:util.runtime"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectDist(":kotlin-stdlib"))
testCompile(commonDep("junit:junit"))
testCompile(ideaSdkDeps("util"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
testsJar {}