Skip to content

Commit

Permalink
Merge pull request #8 from photowey/release
Browse files Browse the repository at this point in the history
[release] Release v1.2(3.7.0.1.2)
  • Loading branch information
photowey authored Apr 7, 2024
2 parents 09cf690 + 020189e commit 72c1ed7
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 15 deletions.
2 changes: 1 addition & 1 deletion kafka-plus-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
</parent>

<artifactId>kafka-plus-autoconfigure</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kafka-plus-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
</parent>

<artifactId>kafka-plus-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kafka-plus-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
</parent>

<artifactId>kafka-plus-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kafka-plus-jackson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
</parent>

<artifactId>kafka-plus-jackson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kafka-plus-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
</parent>

<artifactId>kafka-plus-runtime</artifactId>
Expand Down
11 changes: 10 additions & 1 deletion kafkaplus-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
</parent>

<artifactId>kafkaplus-spring-boot-starter</artifactId>
Expand All @@ -26,6 +26,10 @@
<artifactId>kafka-plus-autoconfigure</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
Expand All @@ -38,6 +42,11 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
Expand Down
25 changes: 24 additions & 1 deletion kafkaplus-spring-boot3-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
</parent>

<artifactId>kafkaplus-spring-boot3-starter</artifactId>
Expand All @@ -26,6 +26,10 @@
<artifactId>kafka-plus-autoconfigure</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
Expand All @@ -38,6 +42,11 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot-v3.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
Expand All @@ -51,4 +60,18 @@
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>17</source>
<target>17</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>
18 changes: 10 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,10 @@

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.5</version>
</parent>

<groupId>io.github.photowey</groupId>
<artifactId>kafka-plus</artifactId>
<!-- ${kafka.version}.x.y -->
<version>3.7.0.1.1</version>
<version>3.7.0.1.2</version>
<packaging>pom</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down Expand Up @@ -82,6 +76,8 @@
<spring-boot.version>2.7.5</spring-boot.version>
<spring-boot-v3.version>3.2.4</spring-boot-v3.version>

<junit-jupiter-api.version>5.8.2</junit-jupiter-api.version>

<io.github.photowey.project.url>https://github.com/photowey/kafka-plus</io.github.photowey.project.url>
</properties>
<!-- @formatter:on -->
Expand Down Expand Up @@ -146,6 +142,12 @@
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-api.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -296,7 +298,7 @@ limitations under the License.
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>${git-commit-id-plugin.version}</version>
<version>${maven-git-commit-id-plugin.version}</version>
<executions>
<execution>
<id>git</id>
Expand Down

0 comments on commit 72c1ed7

Please sign in to comment.