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

CAMEL-20410: more fixes (2) #13206

Merged
merged 3 commits into from
Feb 20, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

*Since Camel {since}*

Fastjson is a Data Format which uses the
Fastjson is a Data Format that uses the
https://github.com/alibaba/fastjson[Fastjson Library]

[source,java]
Expand All @@ -31,12 +31,11 @@ include::partial$dataformat-options.adoc[]

== Dependencies

To use Fastjson in your camel routes you need to add the dependency
To use Fastjson in your camel routes, you need to add the dependency
on *camel-fastjson* which implements this data format.

If you use maven you could just add the following to your pom.xml,
substituting the version number for the latest & greatest release (see
the download page for the latest versions).
If you use maven, you could add the following to your `pom.xml`,
substituting the version number for the latest & greatest release.

[source,xml]
----------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*{component-header}*

The FHIR component integrates with the
http://hapifhir.io/[HAPI-FHIR] library which is an open-source implementation of the
http://hapifhir.io/[HAPI-FHIR] library, which is an open-source implementation of the
http://hl7.org/implement/standards/fhir/[FHIR] (Fast Healthcare Interoperability Resources) specification in Java.

Maven users will need to add the following dependency to their pom.xml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@

*{component-header}*

This component can be used to watch file modification events in folder. It is based on https://github.com/gmethvin/directory-watcher[gmethvin/directory-watcher].
This component can be used to watch file modification events in the folder.
It is based on the project https://github.com/gmethvin/directory-watcher[directory-watcher].

== URI Options

Expand Down Expand Up @@ -53,7 +54,7 @@ from("file-watch://some-directory?events=DELETE,CREATE&antInclude=**/*.txt")
.log("File event: ${header.CamelFileEventType} occurred on file ${header.CamelFileName} at ${header.CamelFileLastModified}");
----

=== Create snapshot of file when modified:
=== Create a snapshot of file when modified:

[source,java]
----
Expand Down