Skip to content

Commit

Permalink
Merge pull request #409 from cescoffier/features/update-smallrye-reac…
Browse files Browse the repository at this point in the history
…tive-stream-operators-to-0.4

Update smallrye reactive stream operators to 0.4
  • Loading branch information
cescoffier authored Jan 3, 2019
2 parents e9b8a3e + 422107b commit 5947f7e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 32 deletions.
6 changes: 3 additions & 3 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<smallrye-open-api.version>1.0.2</smallrye-open-api.version>
<smallrye-opentracing.version>1.2.0</smallrye-opentracing.version>
<smallrye-fault-tolerance.version>1.0.2</smallrye-fault-tolerance.version>
<smallrye-reactive-streams-operators.version>0.3.1</smallrye-reactive-streams-operators.version>
<smallrye-reactive-streams-operators.version>0.4.0</smallrye-reactive-streams-operators.version>
<javax.activation.version>1.1.1</javax.activation.version>
<javax.inject.version>1</javax.inject.version>
<javax.annotation-api.version>1.3</javax.annotation-api.version>
Expand Down Expand Up @@ -79,10 +79,10 @@
<agroal.version>1.2</agroal.version>
<jboss-transaction-spi.version>7.6.0.Final</jboss-transaction-spi.version>
<javax.persistence-api.version>2.2</javax.persistence-api.version>
<rxjava.version>2.2.4</rxjava.version>
<rxjava.version>2.2.5</rxjava.version>
<microprofile-rest-client-api.version>1.0</microprofile-rest-client-api.version>
<microprofile-opentracing-api.version>1.2</microprofile-opentracing-api.version>
<microprofile-reactive-streams-operators.version>1.0-RC3</microprofile-reactive-streams-operators.version>
<microprofile-reactive-streams-operators.version>1.0-RC4</microprofile-reactive-streams-operators.version>
<wildfly.openssl.version>1.0.6.Final</wildfly.openssl.version>
<jboss-logging-annotations.version>2.1.0.Final</jboss-logging-annotations.version>
<log4j.version>1.2.16</log4j.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,4 @@
</dependency>
</dependencies>

<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-jroper-maven</id>
<name>bintray</name>
<url>https://dl.bintray.com/jroper/maven</url>
</repository>
</repositories>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
package org.jboss.shamrock.rsops;

import io.smallrye.reactive.streams.Engine;
import org.eclipse.microprofile.reactive.streams.ReactiveStreamsFactory;
import org.eclipse.microprofile.reactive.streams.core.ReactiveStreamsFactoryImpl;
import org.eclipse.microprofile.reactive.streams.spi.ReactiveStreamsEngine;
import org.eclipse.microprofile.reactive.streams.operators.ReactiveStreamsFactory;
import org.eclipse.microprofile.reactive.streams.operators.core.ReactiveStreamsFactoryImpl;
import org.eclipse.microprofile.reactive.streams.operators.spi.ReactiveStreamsEngine;
import org.jboss.shamrock.annotations.BuildProducer;
import org.jboss.shamrock.annotations.BuildStep;
import org.jboss.shamrock.deployment.builditem.substrate.ServiceProviderBuildItem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@

<dependencies>
<dependency>
<groupId>org.eclipse.microprofile.reactive.streams</groupId>
<artifactId>microprofile-reactive-streams-operators</artifactId>
<groupId>org.eclipse.microprofile.reactive-streams-operators</groupId>
<artifactId>microprofile-reactive-streams-operators-api</artifactId>
<version>${microprofile-reactive-streams-operators.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.reactive.streams</groupId>
<groupId>org.eclipse.microprofile.reactive-streams-operators</groupId>
<artifactId>microprofile-reactive-streams-operators-core</artifactId>
<version>${microprofile-reactive-streams-operators.version}</version>
</dependency>
Expand Down Expand Up @@ -65,15 +65,4 @@
</plugins>
</build>

<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-jroper-maven</id>
<name>bintray</name>
<url>https://dl.bintray.com/jroper/maven</url>
</repository>
</repositories>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package org.jboss.shamrock.example.reactive;

import io.reactivex.Flowable;
import org.eclipse.microprofile.reactive.streams.ReactiveStreams;
import org.eclipse.microprofile.reactive.streams.operators.ReactiveStreams;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
Expand Down

0 comments on commit 5947f7e

Please sign in to comment.