Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update resource links #297

Merged
merged 2 commits into from
Jun 9, 2024
Merged
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
14 changes: 7 additions & 7 deletions archetype/src/main/resources/archetype-resources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ You can run the application by executing the following command from the director
```

#if ((${runtime} == 'payara') && (${profile} != 'full'))
Once the runtime starts, you can access the project at http://localhost:8080
Once the runtime starts, you can access the project at [http://localhost:8080](http://localhost:8080).
#elseif (${runtime} == 'open-liberty')
Once the runtime starts, you can access the project at http://localhost:9080
Once the runtime starts, you can access the project at [http://localhost:9080](http://localhost:9080).
#else
Once the runtime starts, you can access the project at http://localhost:8080/${artifactId}.
Once the runtime starts, you can access the project at [http://localhost:8080/${artifactId}](http://localhost:8080/${artifactId}).
#end

#if ((${docker} == 'yes') and (${runtime} != 'glassfish'))
Expand All @@ -46,9 +46,9 @@ docker run -it --rm -p 9080:9080 ${artifactId}:v1
```

#if (${runtime} != 'open-liberty')
Once the runtime starts, you can access the project at http://localhost:8080/${artifactId}.
Once the runtime starts, you can access the project at [http://localhost:8080/${artifactId}](http://localhost:8080/${artifactId}).
#else
Once the runtime starts, you can access the project at http://localhost:9080/
Once the runtime starts, you can access the project at [http://localhost:9080/](http://localhost:9080/).
#end
#end
#else
Expand All @@ -59,5 +59,5 @@ Once the runtime starts, you can access the project at http://localhost:9080/
```

This will generate a file named `${artifactId}.war`. You should be able to run the application by deploying the file to
a [Jakarta EE compatible runtime](https://jakarta.ee/compatibility).
#end
a [Jakarta EE compatible runtime](https://jakarta.ee/compatibility).
#end
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ <h2>Welcome!</h2>
<p><b>Learn more!</b><br/>
There are many excellent free resources to learn Jakarta EE! The following are some that you should begin exploring alongside the starter.
<ul>
<li>The <a target="_blank" href="https://eclipse-ee4j.github.io/jakartaee-tutorial">Jakarta EE Tutorial</a> is a comprehensive reference
<li>The <a target="_blank" href="https://jakarta.ee/learn/docs/jakartaee-tutorial/current/">Jakarta EE Tutorial</a> is a comprehensive reference
for developing applications with Jakarta EE.</li>
<li>The <a target="_blank" href="https://eclipse-ee4j.github.io/jakartaee-firstcup/">First Cup</a> is part of the Tutorial and is a gentle
hands-on introduction to Jakarta EE.</li>
<li>You can further explore the <a target="_blank" href="https://github.com/eclipse-ee4j/jakartaee-firstcup-examples">First Cup Examples</a>
to get a feel for how Jakarta EE applications look like.</li>
<li>The <a target="_blank" href="https://github.com/eclipse-ee4j/jakartaee-tutorial-examples">Jakarta EE Tutorial Examples</a> is a very
<li>The <a target="_blank" href="https://github.com/eclipse-ee4j/jakartaee-examples">Jakarta EE Examples</a> is a very
comprehensive resource showing you how to use many Jakarta EE APIs and features.</li>
<li>The <a target="_blank" href="https://eclipse-ee4j.github.io/cargotracker/">Eclipse Cargo Tracker</a> project demonstrates first-hand how you can
develop applications with Jakarta EE using widely adopted architectural best practices like Domain-Driven Design (DDD).</li>
Expand All @@ -36,4 +36,4 @@ <h2>Welcome!</h2>
<b>We hope you enjoy your Jakarta EE journey!</b>
</p>
</body>
</html>
</html>
Loading