From 0b081a4a5e79c7cc34c7f0af4da5f0cccde39975 Mon Sep 17 00:00:00 2001 From: John Thompson Date: Tue, 30 Oct 2018 18:53:04 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dafea84..f3e94a5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Introduction to JUnit 5 with Maven -All source code examples in the repository are for my [Online Course - Testing Spring Beginner to Guru](https://springframework.guru) +All source code examples in the repository are for my [Online Course - Testing Spring Beginner to Guru](https://www.udemy.com/testing-spring-boot-beginner-to-guru/?couponCode=GITHUB_REPO) This source code repository contains JUnit 5 test examples with Maven. From 469d1cf7d67c064dc50dea29e9105d2bd7961708 Mon Sep 17 00:00:00 2001 From: Paulo Matheus Date: Fri, 22 May 2026 14:12:13 -0300 Subject: [PATCH 2/2] =?UTF-8?q?Adcionando=20plugins=20e=20depend=C3=AAncia?= =?UTF-8?q?=20para=20teste=20em=20junit=20com=20vers=C3=B5es=20mais=20atua?= =?UTF-8?q?lizadas=20que=20no=20curso?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/pom.xml b/pom.xml index 84133d0..bc56c5d 100644 --- a/pom.xml +++ b/pom.xml @@ -39,5 +39,52 @@ 11 ${java.version} ${java.version} + 5.14.4 + + + + + org.junit.jupiter + junit-jupiter-api + ${junit-platform.version} + + + + org.junit.jupiter + junit-jupiter-engine + ${junit-platform.version} + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.15.0 + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.5.5 + + + --illegal-access=permit + + + + + org.apache.maven.plugins + maven-failsafe-plugin + 2.22.0 + + + --illegal-access=permit + + + + + \ No newline at end of file