Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: confluentinc/parallel-consumer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e5ca55d2b37c78312426aae94cef98a828b96bb9
Choose a base ref
..
head repository: confluentinc/parallel-consumer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a861249476b0f5dca8f3d80423242df5b24b589b
Choose a head ref
Showing with 44 additions and 7 deletions.
  1. +1 −1 parallel-consumer-core/pom.xml
  2. +1 −1 parallel-consumer-vertx/pom.xml
  3. +42 −5 pom.xml
2 changes: 1 addition & 1 deletion parallel-consumer-core/pom.xml
Original file line number Diff line number Diff line change
@@ -79,7 +79,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.16.jre7</version>
<version>42.2.18.jre7</version>
<scope>test</scope>
</dependency>
</dependencies>
2 changes: 1 addition & 1 deletion parallel-consumer-vertx/pom.xml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<vertx.version>4.0.0.Beta3</vertx.version>
<vertx.version>4.0.0.CR1</vertx.version>
</properties>

<dependencies>
47 changes: 42 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -66,8 +66,9 @@
<!-- version numbers -->
<!-- plugins -->
<mycila.version>4.0.rc2</mycila.version>
<lombok.version>1.18.12</lombok.version>
<lombok.version>1.18.16</lombok.version>
<auto-service.version>1.0-rc7</auto-service.version>
<surefire.version>3.0.0-M5</surefire.version>

<!-- core -->
<slf4j.version>2.0.0-alpha1</slf4j.version>
@@ -204,13 +205,13 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.17.2</version>
<version>3.18.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.5.13</version>
<version>3.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -369,7 +370,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<version>${surefire.version}</version>
<configuration>
<excludes>
<!-- <exclude>**/*integration*/**/*.java</exclude> too aggressive? -->
@@ -381,7 +382,7 @@
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M4</version>
<version>${surefire.version}</version>
<executions>
<execution>
<goals>
@@ -500,6 +501,42 @@
<version>3.1.0</version>
</plugin>
</plugins>

<!-- Management -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>

<repositories>