Skip to content

Commit a4ad607

Browse files
committed
Merge branch 'master' of github.com:spring-guides/getting-started-macros
2 parents fed79c3 + f13e123 commit a4ad607

5 files changed

+49
-40
lines changed

build_system_intro_yarn.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
:linkattrs:
3+
4+
We also have additional guides having specific instructions using
5+
build systems with Spring YARN. If you're not familiar with either, refer to
6+
link:/guides/gs/gradle-yarn[Building Spring YARN Projects with Gradle] or
7+
link:/guides/gs/maven-yarn[Building Spring YARN Projects with Maven].

build_yarn_application.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ifndef::yarn_base_dist[:yarn_base_dist: dist]
77

88
== Build the Application
99

10-
For gradle simply execute a `clean` and `build` commands.
10+
For gradle simply execute the `clean` and `build` tasks.
1111
[source,text]
1212
----
1313
./gradlew clean build
@@ -19,7 +19,7 @@ To skip existing tests if any:
1919
./gradlew clean build -x test
2020
----
2121

22-
For maven simply execute a `clean` and `package` commands.
22+
For maven simply execute the `clean` and `package` goals.
2323
[source,text]
2424
----
2525
mvn clean package

create_both_builds_multi.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
=== Create the Gradle build files
2+
Below is the https://github.com/spring-guides/{project_id}/blob/master/initial/build.gradle[initial Gradle build file] and the https://github.com/spring-guides/{project_id}/blob/master/initial/settings.gradle[initial Gradle settings file]. But you can also use Maven. The pom.xml file is included https://github.com/spring-guides/{project_id}/blob/master/initial/pom.xml[right here]. If you are using link:/guides/gs/sts[Spring Tool Suite (STS)], you can import the guide directly.

create_directory_structure_yarn_hello.adoc

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ subdirectory structure:
1313
[subs="attributes"]
1414
```
1515
├── {yarn_base_appmaster}
16-
└── src
17-
└── main
18-
├── resources
19-
└── java
20-
└── hello
21-
└── appmaster
16+
└── src
17+
└── main
18+
├── resources
19+
└── java
20+
└── hello
21+
└── appmaster
2222
├── {yarn_base_container}
23-
└── src
24-
└── main
25-
├── resources
26-
└── java
27-
└── hello
28-
└── container
23+
└── src
24+
└── main
25+
├── resources
26+
└── java
27+
└── hello
28+
└── container
2929
├── {yarn_base_client}
30-
└── src
31-
└── main
32-
├── resources
33-
└── java
34-
└── hello
35-
└── client
30+
└── src
31+
└── main
32+
├── resources
33+
└── java
34+
└── hello
35+
└── client
3636
└── {yarn_base_dist}
3737
```
3838

39-
for example, with
39+
for example, on *nix systems, with:
4040

4141
[subs="attributes"]
4242
```
@@ -48,5 +48,5 @@ mkdir -p {yarn_base_client}/src/main/resources
4848
mkdir -p {yarn_base_client}/src/main/java/hello/client
4949
mkdir -p {yarn_base_dist}
5050
```
51-
on *nix systems:
51+
5252

create_directory_structure_yarn_test_hello.adoc

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ subdirectory structure:
1313
[subs="attributes"]
1414
```
1515
├── {yarn_base_appmaster}
16-
└── src
17-
└── main
18-
├── resources
19-
└── java
20-
└── hello
21-
└── appmaster
16+
└── src
17+
└── main
18+
├── resources
19+
└── java
20+
└── hello
21+
└── appmaster
2222
├── {yarn_base_container}
23-
└── src
24-
└── main
25-
├── resources
26-
└── java
27-
└── hello
28-
└── container
23+
└── src
24+
└── main
25+
├── resources
26+
└── java
27+
└── hello
28+
└── container
2929
├── {yarn_base_client}
30-
└── src
31-
└── main
32-
├── resources
33-
└── java
34-
└── hello
35-
└── client
30+
└── src
31+
└── main
32+
├── resources
33+
└── java
34+
└── hello
35+
└── client
3636
└── {yarn_base_dist}
3737
└── src
3838
└── test

0 commit comments

Comments
 (0)