Skip to content

Instantly share code, notes, and snippets.

@dannyshain
Created October 14, 2021 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dannyshain/c79cd24ed1d0117727e757b50a980df9 to your computer and use it in GitHub Desktop.
Save dannyshain/c79cd24ed1d0117727e757b50a980df9 to your computer and use it in GitHub Desktop.
plugins {
id 'java'
}
group 'SeleniumGradleSample'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.testng', name: 'testng', version: '6.14.3'
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.0.0'
}
test {
useTestNG()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment