Skip to content

Commit 54f74b6

Browse files
committed
Reactor Snapshot Testing
Signed-off-by: Ben Hale <[email protected]>
1 parent c68edce commit 54f74b6

File tree

2 files changed

+27
-7
lines changed

2 files changed

+27
-7
lines changed

.idea/compiler.xml

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
<netty.version>4.1.42.Final</netty.version>
4747
<okhttp3.version>3.14.4</okhttp3.version>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49+
<reactor.version>Californium-BUILD-SNAPSHOT</reactor.version>
4950
<wire.version>2.2.0</wire.version>
5051
</properties>
5152

@@ -58,6 +59,13 @@
5859
<type>pom</type>
5960
<scope>import</scope>
6061
</dependency>
62+
<dependency>
63+
<groupId>io.projectreactor</groupId>
64+
<artifactId>reactor-bom</artifactId>
65+
<version>${reactor.version}</version>
66+
<type>pom</type>
67+
<scope>import</scope>
68+
</dependency>
6169
<dependency>
6270
<groupId>org.springframework.boot</groupId>
6371
<artifactId>spring-boot-dependencies</artifactId>
@@ -224,6 +232,18 @@
224232
</pluginRepository>
225233
</pluginRepositories>
226234

235+
<!--TODO: Remove once testing against Reactor Snapshots is complete -->
236+
<repositories>
237+
<repository>
238+
<id>spring-snapshot</id>
239+
<name>Spring Snapshots</name>
240+
<url>https://repo.spring.io/snapshot</url>
241+
<snapshots>
242+
<enabled>true</enabled>
243+
</snapshots>
244+
</repository>
245+
</repositories>
246+
227247
<profiles>
228248
<profile>
229249
<id>integration-test</id>

0 commit comments

Comments
 (0)