|
15 | 15 | [[getting-started.installing.java]]
|
16 | 16 | == Installation Instructions for the Java Developer
|
17 | 17 |
|
18 |
| -* == Spring Boot == any standard Java library |
19 |
| - ** 👁️NOT special integration tool is required 👁 |
20 |
| - *** any IDE or text editor can be used |
21 |
| - ** Run and debug a Spring Boot application == any other Java program |
| 18 | +* Spring Boot's installation instructions == any standard Java library's installation instructions |
| 19 | + ** ❌️NOT require special integration tool ❌ |
| 20 | + *** == ANY IDE or text editor -- can be -- used |
| 21 | + ** run & debug a Spring Boot application == run & debug ANY other Java program |
22 | 22 | * steps
|
23 |
| - ** include the appropriate `+spring-boot-*.jar+` files on your classpath |
| 23 | + ** include the appropriate `+spring-boot-*.jar+` files | your classpath |
24 | 24 | *** ways
|
25 | 25 | **** copy Spring Boot jars
|
26 | 26 | **** use a build tool / supports dependency management ( _Example:_ Maven or Gradle)
|
27 |
| - ***** Recommended |
| 27 | + ***** 👀recommended👀 |
28 | 28 |
|
29 | 29 | [[getting-started.installing.java.maven]]
|
30 | 30 | === Maven Installation
|
31 | 31 |
|
32 |
| -Spring Boot is compatible with Apache Maven 3.6.3 or later. |
33 |
| -If you do not already have Maven installed, you can follow the instructions at https://maven.apache.org. |
34 |
| - |
35 |
| -TIP: On many operating systems, Maven can be installed with a package manager. |
36 |
| -If you use OSX Homebrew, try `brew install maven`. |
37 |
| -Ubuntu users can run `sudo apt-get install maven`. |
38 |
| -Windows users with https://chocolatey.org/[Chocolatey] can run `choco install maven` from an elevated (administrator) prompt. |
39 |
| - |
40 |
| -Spring Boot dependencies use the `org.springframework.boot` group id. |
41 |
| -Typically, your Maven POM file inherits from the `spring-boot-starter-parent` project and declares dependencies to one or more xref:reference:using/build-systems.adoc#using.build-systems.starters[starters]. |
42 |
| -Spring Boot also provides an optional xref:maven-plugin:index.adoc[Maven plugin] to create executable jars. |
43 |
| - |
44 |
| -More details on getting started with Spring Boot and Maven can be found in the xref:maven-plugin:getting-started.adoc[] section of the Maven plugin's reference guide. |
45 |
| - |
| 32 | +* Apache Maven 3.6.3+ |
| 33 | +* `org.springframework.boot` |
| 34 | + ** Spring Boot dependencies' group id |
| 35 | +* how to use? |
| 36 | + ** inherits -- from -- `spring-boot-starter-parent` project |
| 37 | + ** use xref:reference:using/build-systems.adoc#using.build-systems.starters[starters] |
| 38 | +* xref:maven-plugin:index.adoc[Spring Boot Maven plugin] |
| 39 | + ** -- create -- executable jars |
| 40 | +* see xref:maven-plugin:getting-started.adoc[] |
46 | 41 |
|
47 | 42 |
|
48 | 43 | [[getting-started.installing.java.gradle]]
|
49 | 44 | === Gradle Installation
|
50 | 45 |
|
| 46 | +* TODO: |
51 | 47 | Spring Boot is compatible with Gradle 7.x (7.6.4 or later) or 8.x (8.3 or later).
|
52 | 48 | If you do not already have Gradle installed, you can follow the instructions at https://gradle.org.
|
53 | 49 |
|
|
0 commit comments