Created
September 1, 2017 17:52
-
-
Save nddipiazza/aa23e1f4cfa182c6664c629f0e85f566 to your computer and use it in GitHub Desktop.
Gradle file for the headlessfirefox selenium example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| group 'com.mozilla' | |
| version '1.0' | |
| apply plugin: 'java' | |
| sourceCompatibility = 1.8 | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| compile('org.seleniumhq.selenium:selenium-api:3.5.3') | |
| compile('org.seleniumhq.selenium:selenium-remote-driver:3.5.3') | |
| compile('org.seleniumhq.selenium:selenium-server:3.5.3') | |
| testCompile group: 'junit', name: 'junit', version: '4.12' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment