Skip to content

Commit

Permalink
[SHIBUI-922]
Browse files Browse the repository at this point in the history
change config
  • Loading branch information
jj committed Dec 4, 2018
1 parent 1b15da1 commit bf586c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ task integrationTest(type: Test) {
finalizedBy 'dockerStop'
testClassesDirs = sourceSets.integrationTest.output.classesDirs
classpath = sourceSets.integrationTest.runtimeClasspath
systemProperties = ['webdriver.gecko.driver': 'C:\\Users\\jj-unicon\\Downloads\\geckodriver-v0.21.0-win64\\geckodriver.exe']
if (project.hasProperty('webdriver.gecko.driver')) {
systemProperties['webdriver.gecko.driver'] = project.'webdriver.gecko.driver'
}
}

task generateSources {
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ hibernate.version=5.2.11.Final
lucene.version=7.2.1

org.gradle.jvmargs=-Xmx4g -XX:-UseGCOverheadLimit

# this should be set in your own global gradle.properties file
webdriver.gecko.driver=

0 comments on commit bf586c1

Please sign in to comment.