Skip to content

Commit

Permalink
Fix broken links (platformsh#3388)
Browse files Browse the repository at this point in the history
Co-authored-by: Chad Carlson <[email protected]>
  • Loading branch information
AnouckColson and chadwcarlson authored Aug 29, 2023
1 parent 5d6a9c0 commit 376b4b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sites/platform/src/guides/jakarta/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Note that the Java configuration reader library is used in the following example

### MongoDB

You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://www.jnosql.org/) to use [MongoDB](../../add-services/mongodb.md) with your application by first determining the MongoDB client programmatically.
You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://projects.eclipse.org/projects/technology.jnosql) to use [MongoDB](../../add-services/mongodb.md) with your application by first determining the MongoDB client programmatically.

```java
import com.mongodb.MongoClient;
Expand Down Expand Up @@ -59,7 +59,7 @@ class DocumentManagerProducer {

### Apache Solr

You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://www.jnosql.org/) to use [Solr](../../add-services/solr.md) with your application by first determining the Solr client programmatically.
You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://projects.eclipse.org/projects/technology.jnosql) to use [Solr](../../add-services/solr.md) with your application by first determining the Solr client programmatically.

```java
import jakarta.nosql.document.DocumentCollectionManager;
Expand Down Expand Up @@ -102,7 +102,7 @@ class DocumentManagerProducer {

### Elasticsearch

You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://www.jnosql.org/) to use [Elasticsearch](../../add-services/elasticsearch.md) with your application by first determining the Elasticsearch client programmatically.
You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://projects.eclipse.org/projects/technology.jnosql) to use [Elasticsearch](../../add-services/elasticsearch.md) with your application by first determining the Elasticsearch client programmatically.

```java
import jakarta.nosql.document.DocumentCollectionManager;
Expand Down Expand Up @@ -144,7 +144,7 @@ class DocumentManagerProducer {

### Redis

You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://www.jnosql.org/) to use [Redis](../../add-services/redis.md) with your application by first determining the Redis client programmatically.
You can use [Jakarta NoSQL](https://projects.eclipse.org/projects/ee4j.nosql)/[JNoSQL](https://projects.eclipse.org/projects/technology.jnosql) to use [Redis](../../add-services/redis.md) with your application by first determining the Redis client programmatically.

```java
import jakarta.nosql.keyvalue.BucketManager;
Expand Down

0 comments on commit 376b4b6

Please sign in to comment.