Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
VALIDATE_TYPESCRIPT_STANDARD: false
VALIDATE_JAVASCRIPT_STANDARD: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FILTER_REGEX_EXCLUDE: mvnw*
LINTER_RULES_PATH: ./tools/pr-checker/linters/
DEFAULT_BRANCH: prod
- name: Summary
Expand Down
31 changes: 26 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ https://openliberty.io/guides/rest-intro.html[Creating a RESTful web service^].
include::{common-includes}/gitclone.adoc[]

[role='command']
include::{common-includes}/twyb-intro.adoc[]
include::{common-includes}/twyb-intro-mvnw.adoc[]

// Static guide instruction
ifndef::cloud-hosted[]
Expand Down Expand Up @@ -98,7 +98,7 @@ dj wrote 0 albums:
----

[role='command']
include::{common-includes}/twyb-end.adoc[]
include::{common-includes}/twyb-end-mvnw.adoc[]

// =================================================================================================
// Starting the service
Expand All @@ -118,7 +118,7 @@ cd /home/project/guide-rest-client-angular/start
endif::[]

[role='command']
include::{common-includes}/devmode-lmp33-start.adoc[]
include::{common-includes}/devmode-mvnw-start.adoc[]

// Static guide instruction
ifndef::cloud-hosted[]
Expand Down Expand Up @@ -276,16 +276,37 @@ The Open Liberty instance is already started, and the REST service is running. I

// Static guide instruction
ifndef::cloud-hosted[]
include::{common-includes}/os-tabs.adoc[]

[.tab_content.windows_section]
--
[role='command']
```
mvnw.cmd generate-resources
```
--

[.tab_content.mac_section]
--
[role='command']
```
./mvnw generate-resources
```
--

[.tab_content.linux_section]
--
[role='command']
```
mvn generate-resources
./mvnw generate-resources
```
--
endif::[]
// Cloud hosted guide instruction
ifdef::cloud-hosted[]
```bash
cd /home/project/guide-rest-client-angular/start
mvn generate-resources
./mvnw generate-resources
```
endif::[]

Expand Down
Binary file added finish/.mvn/wrapper/maven-wrapper.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions finish/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar
Loading
Loading