Skip to content

Commit c360125

Browse files
updating Spring Boot Version & Readme
1 parent 52f1362 commit c360125

File tree

2 files changed

+9
-28
lines changed

2 files changed

+9
-28
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Spring Framework 6: Beginner to Guru
22

3-
This repository is for an example application built in my [Spring Framework 6 - Beginner to Guru](https://www.udemy.com/course/spring-framework-5-beginner-to-guru/?referralCode=6D9ECD1F93988FEE5CE9) online course
3+
This repository is for an example application built in my [Spring Framework 6 - Beginner to Guru](https://www.udemy.com/course/spring-framework-6-beginner-to-guru/?referralCode=2BD0B7B7B6B511D699A9) online course
44

55
The application is a simple Spring Boot 3 / Spring Framework 6 web application. It is used to help students learn how
66
to use the Spring Framework. Step by step instructions and detailed explanations can be found within the course.
@@ -16,14 +16,15 @@ Got a question about your Spring Framework 6 course? [Checkout these FAQs!](http
1616
| Recommended | Reference | Notes |
1717
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
1818
| Oracle Java 17 JDK | [Download]([https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html](https://www.oracle.com/java/technologies/downloads/#java17) | Java 17 or higher is required for Spring Framework 6 |
19-
| IntelliJ 2018 or Higher | [Download](https://www.jetbrains.com/idea/download/) | Ultimate Edition recommended. Students can get a free 120 trial license [here](https://github.com/springframeworkguru/spring5webapp/wiki/Which-IDE-to-Use%3F#how-do-i-get-the-free-120-day-trial-to-intellij-ultimate) |
20-
| Maven 3.6.0 or higher | [Download](https://maven.apache.org/download.cgi) | [Installation Instructions](https://maven.apache.org/install.html) |
21-
| Gradle 4.8 or higher | [Download](https://gradle.org/install/) | **Note:** Use Version 5 or higher if using Java 11 |
22-
| Git 2.15 or higher | [Download](https://git-scm.com/downloads) | |
19+
| IntelliJ 2022 or Higher | [Download](https://www.jetbrains.com/idea/download/) | Ultimate Edition recommended. Students can get a free 120 trial license [here](https://github.com/springframeworkguru/spring5webapp/wiki/Which-IDE-to-Use%3F#how-do-i-get-the-free-120-day-trial-to-intellij-ultimate) |
20+
| Maven 3.8.0 or higher | [Download](https://maven.apache.org/download.cgi) | [Installation Instructions](https://maven.apache.org/install.html) |
21+
| Gradle 7.6 or higher | [Download](https://gradle.org/install/) | **Note:** Use Version 5 or higher if using Java 11 |
22+
| Git 2.39 or higher | [Download](https://git-scm.com/downloads) | |
2323
| Git GUI Clients | [Downloads](https://git-scm.com/downloads/guis) | Not required. But can be helpful if new to Git. SourceTree is a good option for Mac and Windows users. |
2424

2525
## All Spring Framework Guru Courses
2626
### Spring Framework 6
27+
* [Spring Framework 6 - Beginner to Guru](https://www.udemy.com/course/spring-framework-6-beginner-to-guru/?referralCode=2BD0B7B7B6B511D699A9)
2728
* [Hibernate and Spring Data JPA: Beginner to Guru](https://www.udemy.com/course/hibernate-and-spring-data-jpa-beginner-to-guru/?referralCode=251C4C865302C7B1BB8F)
2829
### Spring Framework 5
2930
* [Spring Framework 5: Beginner to Guru](https://www.udemy.com/testing-spring-boot-beginner-to-guru/?couponCode=GITHUB_REPO) - Get the most modern and comprehensive course available for the Spring Framework! Join over 17,200 over Guru's in an Slack community exclusive to this course! More than 5,700 students have given this 53 hour course a 5 star review!

pom.xml

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,19 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.0-M3</version>
8+
<version>3.0.2</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>guru.springframework</groupId>
1212
<artifactId>spring-6-webapp</artifactId>
1313
<version>0.0.1-SNAPSHOT</version>
1414
<name>spring-6-webapp</name>
1515
<description>Spring 6 Web App</description>
16+
1617
<properties>
1718
<java.version>17</java.version>
1819
</properties>
20+
1921
<dependencies>
2022
<dependency>
2123
<groupId>org.springframework.boot</groupId>
@@ -25,7 +27,6 @@
2527
<groupId>org.springframework.boot</groupId>
2628
<artifactId>spring-boot-starter-web</artifactId>
2729
</dependency>
28-
2930
<dependency>
3031
<groupId>com.h2database</groupId>
3132
<artifactId>h2</artifactId>
@@ -46,25 +47,4 @@
4647
</plugin>
4748
</plugins>
4849
</build>
49-
<repositories>
50-
<repository>
51-
<id>spring-milestones</id>
52-
<name>Spring Milestones</name>
53-
<url>https://repo.spring.io/milestone</url>
54-
<snapshots>
55-
<enabled>false</enabled>
56-
</snapshots>
57-
</repository>
58-
</repositories>
59-
<pluginRepositories>
60-
<pluginRepository>
61-
<id>spring-milestones</id>
62-
<name>Spring Milestones</name>
63-
<url>https://repo.spring.io/milestone</url>
64-
<snapshots>
65-
<enabled>false</enabled>
66-
</snapshots>
67-
</pluginRepository>
68-
</pluginRepositories>
69-
7050
</project>

0 commit comments

Comments
 (0)