Add gradle/ide.gradle file to mark src/integration-test/java sources as an IJ Test Sources Root.

This commit is contained in:
John Blum
2017-06-06 20:07:41 -07:00
parent 23518bf0f1
commit 6b25500f09
9 changed files with 50 additions and 17 deletions

View File

@@ -1,7 +1,10 @@
apply plugin: 'io.spring.convention.spring-sample-war'
apply plugin: "gemfire-server"
apply from: IDE_GRADLE
dependencies {
compile project(':spring-session-data-geode')
compile "org.springframework:spring-web"
compile "org.webjars:bootstrap"
@@ -19,4 +22,5 @@ dependencies {
integrationTestCompile seleniumDependencies
integrationTestRuntime "org.springframework.shell:spring-shell"
}

View File

@@ -1,6 +1,9 @@
apply plugin: 'io.spring.convention.spring-sample-war'
apply from: IDE_GRADLE
dependencies {
compile project(':spring-session-data-geode')
compile "org.springframework:spring-web"
compile "org.webjars:bootstrap"
@@ -16,4 +19,5 @@ dependencies {
integrationTestCompile "org.assertj:assertj-core"
integrationTestRuntime "org.springframework.shell:spring-shell"
}