-
Notifications
You must be signed in to change notification settings - Fork 6
[Updating - Index Page] Adding Learning Objectives for New Chapters about Reactive Messaging and GraphQL #60
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
Open
ttelang
wants to merge
8
commits into
microprofile:main
Choose a base branch
from
ttelang:patch-24
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+52
−75
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8916948
Revise project overview and microservices descriptions
ttelang 6dfad4a
Refine tutorial content on MicroProfile e-Commerce
ttelang 5d5a0c7
Update content for clarity and accuracy in index.adoc
ttelang 317409c
Update index.adoc
ttelang 3fef6cd
Update chapter02-00.adoc
ttelang 3ac35fe
Update chapter02-00.adoc
ttelang 42f2706
Update chapter02-02.adoc
ttelang e7ada04
Add note on microprofile-telemetry-api artifact
ttelang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,18 +10,18 @@ This section aims to help you make informed decisions about which MicroProfile m | |
|
|
||
| If you're beginning a new MicroProfile-based project and are unsure which specifications you will need, starting with the entire MicroProfile dependency can give you immediate access to the full suite of MicroProfile APIs. This approach allows you to explore and experiment with different specifications without modifying your pom.xml to add or remove dependencies frequently. | ||
|
|
||
| For projects that aim to leverage a wide range of MicroProfile specifications, including advanced features like telemetry, metrics, and fault tolerance, including the entire MicroProfile 6.1 dependency ensures that you have all the necessary APIs at your disposal. This approach simplifies dependency management, especially for complex applications. | ||
| For projects that aim to leverage a wide range of MicroProfile specifications, including advanced features like telemetry, metrics, and fault tolerance, including the entire MicroProfile dependency ensures that you have all the necessary APIs at your disposal. This approach simplifies dependency management, especially for complex applications. | ||
|
|
||
| *Maven* | ||
|
|
||
| [source, xml] | ||
| ---- | ||
|
|
||
| <!-- MicroProfile 6.1 API --> | ||
| <!-- MicroProfile 7.1 API --> | ||
| <dependency> | ||
| <groupId>org.eclipse.microprofile</groupId> | ||
| <artifactId>microprofile</artifactId> | ||
| <version>6.1</version> | ||
| <version>7.1</version> | ||
| <type>pom</type> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
|
|
@@ -31,7 +31,7 @@ For projects that aim to leverage a wide range of MicroProfile specifications, i | |
| [source, xml] | ||
| ---- | ||
| dependencies { | ||
| compileOnly 'org.eclipse.microprofile:microprofile:6.1' | ||
| compileOnly 'org.eclipse.microprofile:microprofile:7.1' | ||
| } | ||
| ---- | ||
|
|
||
|
|
@@ -81,7 +81,7 @@ The list below is provided to help you select the appropriate modules for your M | |
| <dependency> | ||
| <groupId>org.eclipse.microprofile.metrics</groupId> | ||
| <artifactId>microprofile-metrics-api</artifactId> | ||
| <version>5.1.0</version> | ||
| <version>5.1.1</version> | ||
| </dependency> | ||
| ---- | ||
|
|
||
|
|
@@ -93,7 +93,7 @@ The list below is provided to help you select the appropriate modules for your M | |
| <dependency> | ||
| <groupId>org.eclipse.microprofile.fault-tolerance</groupId> | ||
| <artifactId>microprofile-fault-tolerance-api</artifactId> | ||
| <version>4.0.2</version> | ||
| <version>4.1.1</version> | ||
| </dependency> | ||
| ---- | ||
|
|
||
|
|
@@ -102,9 +102,10 @@ The list below is provided to help you select the appropriate modules for your M | |
| [source, xml] | ||
| ---- | ||
| <dependency> | ||
| <groupId>org.eclipse.microprofile.jwt</groupId> | ||
| <artifactId>microprofile-jwt-auth-api</artifactId> | ||
| <version>2.1</version> | ||
| <groupId>org.eclipse.microprofile.jwt</groupId> | ||
| <artifactId>microprofile-jwt-auth-api</artifactId> | ||
| <version>2.1</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| ---- | ||
|
|
||
|
|
@@ -118,7 +119,8 @@ The list below is provided to help you select the appropriate modules for your M | |
| <dependency> | ||
| <groupId>org.eclipse.microprofile.openapi</groupId> | ||
| <artifactId>microprofile-openapi-api</artifactId> | ||
| <version>3.1.1</version> | ||
| <version>4.1</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| ---- | ||
|
|
||
|
|
@@ -129,9 +131,10 @@ The list below is provided to help you select the appropriate modules for your M | |
| [source, xml] | ||
| ---- | ||
| <dependency> | ||
| <groupId>org.eclipse.microprofile.rest.client</groupId> | ||
| <artifactId>microprofile-rest-client-api</artifactId> | ||
| <version>3.0</version> | ||
| <groupId>org.eclipse.microprofile.rest.client</groupId> | ||
| <artifactId>microprofile-rest-client-api</artifactId> | ||
| <version>4.0</version> | ||
| <scope>provided</scope> <!-- Use 'provided' when deploying to Jakarta EE/MicroProfile runtimes --> | ||
| </dependency> | ||
| ---- | ||
|
|
||
|
|
@@ -141,27 +144,18 @@ The list below is provided to help you select the appropriate modules for your M | |
|
|
||
| [source, xml] | ||
| ---- | ||
| <project> | ||
| <dependencyManagement> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>io.opentelemetry</groupId> | ||
| <artifactId>opentelemetry-bom</artifactId> | ||
| <version>1.29.0</version> | ||
| <type>pom</type> | ||
| <scope>import</scope> | ||
| </dependency> | ||
| </dependencies> | ||
| </dependencyManagement> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>io.opentelemetry</groupId> | ||
| <artifactId>opentelemetry-api</artifactId> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> | ||
| <!-- MicroProfile Telemetry 2.1 API --> | ||
| <dependency> | ||
| <groupId>org.eclipse.microprofile.telemetry</groupId> | ||
| <artifactId>microprofile-telemetry-api</artifactId> | ||
| <version>2.1</version> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The lines won't work as there is no api jar for mp telemetry. |
||
| <type>pom</type> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| ---- | ||
|
|
||
| NOTE: The `microprofile-telemetry-api` artifact is an aggregator POM that transitively pulls in `opentelemetry-api`, `opentelemetry-instrumentation-annotations`, and `opentelemetry-semconv`. The `<type>pom</type>` element is required so Maven resolves it correctly instead of looking for a JAR. | ||
|
|
||
| * *Jakarta EE Core Profile* dependency provides the API set included in the Jakarta EE 10 Core Profile, which is optimized for developing microservices and cloud-native Java applications with a reduced set of specifications for a lighter runtime footprint. | ||
|
|
||
| *Maven* | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.