From d6faeef9dcc0445bccbd5f84e261ca5e6341dde4 Mon Sep 17 00:00:00 2001 From: anlov Date: Tue, 27 May 2025 19:09:01 +0300 Subject: [PATCH] Lesson_11_gradle --- build.gradle | 24 ++++++++++++++++++++++++ proJect/pom.xml | 16 ---------------- 2 files changed, 24 insertions(+), 16 deletions(-) create mode 100644 build.gradle delete mode 100644 proJect/pom.xml 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