Migrate GradleFacetImportingTest to testdata

This commit is contained in:
Andrey Uskov
2019-03-29 14:44:07 +03:00
parent 0f60daec25
commit ed0dfaec36
59 changed files with 1571 additions and 1699 deletions
@@ -0,0 +1,23 @@
group 'gr01'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'kotlin'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.1"
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:1.1.1"
}
@@ -0,0 +1,19 @@
group 'gr01'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}
@@ -0,0 +1,2 @@
rootProject.name = 'gr01'
include 'm1'