diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..2e2bbc3 --- /dev/null +++ b/build.gradle @@ -0,0 +1,24 @@ +plugins { + id 'java' + id 'application' +} + +group = 'com.example' +version = '1.0' + +repositories { + mavenCentral() +} + +dependencies { + implementation("org.seleniumhq.selenium:selenium-java:4.32.0") + testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2' +} + +application { + mainClass = 'com.example.App' +} + +test { + useJUnitPlatform() +} \ No newline at end of file diff --git a/proJect/pom.xml b/proJect/pom.xml deleted file mode 100644 index 436410e..0000000 --- a/proJect/pom.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - 4.0.0 - - anlov.java - proJect - 1.0-SNAPSHOT - - 11 - 11 - - - - \ No newline at end of file