Skip to content

Commit af720db

Browse files
committed
Merge branch 'release/0.161'
2 parents a1a7769 + 41223ea commit af720db

68 files changed

Lines changed: 1804 additions & 4447 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
java: [ 9, 11, 14 ]
16+
java: [ 11, 14 ]
1717

1818
steps:
1919
- name: Checkout GitHub sources

pom.xml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>org.reaktivity</groupId>
88
<artifactId>nukleus-http</artifactId>
9-
<version>0.160</version>
9+
<version>0.161</version>
1010
<name>HTTP Nukleus Implementation</name>
1111
<description>HTTP Nukleus Implementation</description>
1212
<url>https://github.com/reaktivity/nukleus-http.java</url>
@@ -43,13 +43,13 @@
4343
</repositories>
4444

4545
<properties>
46-
<maven.compiler.source>9</maven.compiler.source>
47-
<maven.compiler.target>9</maven.compiler.target>
46+
<maven.compiler.source>11</maven.compiler.source>
47+
<maven.compiler.target>11</maven.compiler.target>
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4949
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5050
<checkstyle.config.location>src/conf/checkstyle/configuration.xml</checkstyle.config.location>
5151
<checkstyle.suppressions.location>src/conf/checkstyle/suppressions.xml</checkstyle.suppressions.location>
52-
<jacoco.coverage.ratio>0.87</jacoco.coverage.ratio>
52+
<jacoco.coverage.ratio>0.86</jacoco.coverage.ratio>
5353
<jacoco.missed.count>0</jacoco.missed.count>
5454

5555
<junit.version>4.13.1</junit.version>
@@ -60,9 +60,8 @@
6060
<k3po.version>3.1.0</k3po.version>
6161
<nukleus.plugin.version>0.85</nukleus.plugin.version>
6262

63-
<nukleus.http.spec.version>0.109</nukleus.http.spec.version>
64-
<nukleus.tcp.version>0.111</nukleus.tcp.version>
65-
<reaktor.version>0.162</reaktor.version>
63+
<nukleus.http.spec.version>0.110</nukleus.http.spec.version>
64+
<reaktor.version>0.166</reaktor.version>
6665
</properties>
6766

6867
<dependencies>
@@ -83,12 +82,6 @@
8382
<artifactId>gson</artifactId>
8483
<version>2.8.5</version>
8584
</dependency>
86-
<dependency>
87-
<groupId>org.reaktivity</groupId>
88-
<artifactId>nukleus-tcp</artifactId>
89-
<version>${nukleus.tcp.version}</version>
90-
<scope>test</scope>
91-
</dependency>
9285
<dependency>
9386
<groupId>org.reaktivity</groupId>
9487
<artifactId>reaktor</artifactId>

src/main/java/org/reaktivity/nukleus/http/internal/HttpConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
package org.reaktivity.nukleus.http.internal;
1717

18-
import org.reaktivity.nukleus.Configuration;
18+
import org.reaktivity.reaktor.nukleus.Configuration;
1919

2020
public class HttpConfiguration extends Configuration
2121
{

src/main/java/org/reaktivity/nukleus/http/internal/HttpController.java

Lines changed: 0 additions & 217 deletions
This file was deleted.

src/main/java/org/reaktivity/nukleus/http/internal/HttpControllerFactorySpi.java

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)