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

Add a MongoDB client extension #3022

Merged
merged 14 commits into from
Jul 10, 2019
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
25 changes: 25 additions & 0 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,16 @@
<flyway.version>5.2.4</flyway.version>
<yasson.version>1.0.4</yasson.version>
<neo4j-java-driver.version>2.0.0-alpha03</neo4j-java-driver.version>
<mongo-client.version>3.10.2</mongo-client.version>
<mongo-reactivestreams-client.version>1.11.0</mongo-reactivestreams-client.version>
<!-- Used for integration tests, to make sure webjars work-->
<bootstrap.version>3.1.0</bootstrap.version>
<keycloak.version>6.0.1</keycloak.version>
<subethasmtp.version>3.1.7</subethasmtp.version>
<hibernate-quarkus-local-cache.version>0.1.0</hibernate-quarkus-local-cache.version>
<kogito.version>0.1.3</kogito.version>
<kubernetes-client.version>4.3.0</kubernetes-client.version>
<flapdoodle.mongo.version>2.2.0</flapdoodle.mongo.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -488,6 +491,11 @@
<artifactId>quarkus-mailer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-mongodb-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-undertow-websockets</artifactId>
Expand Down Expand Up @@ -1254,6 +1262,17 @@
<artifactId>subethasmtp</artifactId>
<version>${subethasmtp.version}</version>
</dependency>

<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>${mongo-client.version}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-reactivestreams</artifactId>
<version>${mongo-reactivestreams-client.version}</version>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
Expand Down Expand Up @@ -2034,6 +2053,12 @@
<artifactId>awaitility</artifactId>
<version>${awaitility.version}</version>
</dependency>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<version>${flapdoodle.mongo.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jprocesses</groupId>
<artifactId>jProcesses</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public final class FeatureBuildItem extends MultiBuildItem {
public static final String KUBERNETES = "kubernetes";
public static final String KUBERNETES_CLIENT = "kubernetes-client";
public static final String MAILER = "mailer";
public static final String MONGODB_CLIENT = "mongodb-client";
public static final String NARAYANA_JTA = "narayana-jta";
public static final String REACTIVE_PG_CLIENT = "reactive-pg-client";
public static final String NEO4J = "neo4j";
Expand Down
11 changes: 11 additions & 0 deletions devtools/common/src/main/filtered/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,17 @@
"artifactId": "quarkus-mailer",
"guide": "https://quarkus.io/guides/sending-emails"
},
{
"name": "MongoDB Client",
"labels": [
"mongo",
"mongodb",
"nosql",
"datastore"
],
"groupId": "io.quarkus",
"artifactId": "quarkus-mongodb-client"
},
{
"name": "Narayana JTA - Transaction manager",
"labels": [
Expand Down
Loading