Skip to content

Commit

Permalink
Update to Kroxylicious Junit Ext 0.7.0 (kroxylicious#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-wall authored Nov 24, 2023
1 parent f8c706d commit 3c0d932
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Please enumerate **all user-facing** changes using format `<githib issue/pr numb

## 0.4.0


* [#738](https://github.com/kroxylicious/kroxylicious/pull/738): Update to Kroxylicious Junit Ext 0.7.0
* [#723](https://github.com/kroxylicious/kroxylicious/pull/723): Bump com.fasterxml.jackson:jackson-bom from 2.15.3 to 2.16.0 #723
* [#724](https://github.com/kroxylicious/kroxylicious/pull/724): Bump io.netty.incubator:netty-incubator-transport-native-io_uring from 0.0.23.Final to 0.0.24.Final
* [#725](https://github.com/kroxylicious/kroxylicious/pull/725): Bump io.netty:netty-bom from 4.1.100.Final to 4.1.101.Final #725
Expand Down
5 changes: 5 additions & 0 deletions kroxylicious-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.13</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions kroxylicious-integration-test-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.13</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions kroxylicious-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.13</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions kroxylicious-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.13</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down
10 changes: 8 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<jackson.version>2.16.0</jackson.version>
<junit.version>5.10.1</junit.version>
<kafka.version>3.6.0</kafka.version>
<kroxy.extension.version>0.6.0</kroxy.extension.version>
<kroxy.extension.version>0.7.0</kroxy.extension.version>
<log4j.version>2.21.1</log4j.version>
<picocli.version>4.7.5</picocli.version>
<netty.version>4.1.101.Final</netty.version>
Expand Down Expand Up @@ -332,6 +332,12 @@
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.13</artifactId>
<version>${kafka.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -436,7 +442,7 @@
<groups>java.,javax.,org.,com.,io.,io.kroxylicious</groups>
<removeUnused>true</removeUnused>
<staticAfter>true</staticAfter>
<!-- use langauge level 17, see https://github.com/javaparser/javaparser/issues/3833 -->
<!-- use language level 17, see https://github.com/javaparser/javaparser/issues/3833 -->
<compliance>17</compliance>
</configuration>
<executions>
Expand Down

0 comments on commit 3c0d932

Please sign in to comment.