Skip to content

Commit

Permalink
improve dependency & change README
Browse files Browse the repository at this point in the history
  • Loading branch information
wooEnrico committed Apr 23, 2024
1 parent c88a5f2 commit bb57195
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 128 deletions.
21 changes: 0 additions & 21 deletions kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,12 @@
## dependency

```xml

<dependencies>

<dependency>
<groupId>io.github.wooenrico</groupId>
<artifactId>kafka</artifactId>
<version>1.0.1</version>
</dependency>

<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.0.0</version>
</dependency>

<dependency>
<groupId>io.projectreactor.kafka</groupId>
<artifactId>reactor-kafka</artifactId>
<version>1.3.19</version>
</dependency>

<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.4.25</version>
</dependency>

</dependencies>
```

Expand Down
2 changes: 1 addition & 1 deletion rc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function rc() {
mvn test
mvn clean
mvn deploy
git push git@github.com:wooEnrico/SDK.git --tags
git push git@github.com:wooEnrico/SDK.git v$RC
git checkout .
}

Expand Down
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ function release() {
git add .
git commit --message "Snapshot for $SNAPSHOT"

# git push git@github.com:wooEnrico/SDK.git master
# git push git@github.com:wooEnrico/SDK.git --tags
git push git@github.com:wooEnrico/SDK.git master
git push git@github.com:wooEnrico/SDK.git v$RELEASE
}

echo "Release Version: "
Expand Down
23 changes: 1 addition & 22 deletions spring-boot-data-redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,12 @@ spring boot version = 2.7.12
## dependency

```xml

<dependencies>

<dependency>
<groupId>io.github.wooenrico</groupId>
<artifactId>spring-boot-data-redis</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>2.7.12</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
<version>2.7.12</version>
</dependency>

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.8.0</version>
<version>1.0.2.RC0</version>
</dependency>

</dependencies>
```

Expand Down
16 changes: 7 additions & 9 deletions spring-boot-data-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,25 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<spring.boot.version>2.7.5</spring.boot.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring.boot.version}</version>
<version>2.7.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>${spring.boot.version}</version>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.7.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
<version>${spring.boot.version}</version>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>6.1.10.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
21 changes: 0 additions & 21 deletions spring-boot-starter/kafka-spring-boot-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,12 @@
you can use in spring boot 2.x

```xml

<dependencies>

<dependency>
<groupId>io.github.wooenrico</groupId>
<artifactId>kafka-spring-boot-starter</artifactId>
<version>1.0.1</version>
</dependency>

<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.0.0</version>
</dependency>

<dependency>
<groupId>io.projectreactor.kafka</groupId>
<artifactId>reactor-kafka</artifactId>
<version>1.3.19</version>
</dependency>

<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.4.25</version>
</dependency>

</dependencies>
```

Expand Down
21 changes: 0 additions & 21 deletions spring-boot-starter/kafka-spring-boot3-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,12 @@
you can use in spring boot 3.x

```xml

<dependencies>

<dependency>
<groupId>io.github.wooenrico</groupId>
<artifactId>kafka-spring-boot3-starter</artifactId>
<version>1.0.1</version>
</dependency>

<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.0.0</version>
</dependency>

<dependency>
<groupId>io.projectreactor.kafka</groupId>
<artifactId>reactor-kafka</artifactId>
<version>1.3.19</version>
</dependency>

<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.4.25</version>
</dependency>

</dependencies>
```

Expand Down
23 changes: 1 addition & 22 deletions spring-boot3-data-redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,12 @@ spring boot version = 3.1.2
## dependency

```xml

<dependencies>

<dependency>
<groupId>io.github.wooenrico</groupId>
<artifactId>spring-boot3-data-redis</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>3.1.2</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
<version>3.1.2</version>
</dependency>

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>4.3.2</version>
<version>1.0.2.RC0</version>
</dependency>

</dependencies>
```

Expand Down
16 changes: 7 additions & 9 deletions spring-boot3-data-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,25 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<spring.boot.version>3.1.2</spring.boot.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring.boot.version}</version>
<version>3.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>${spring.boot.version}</version>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>3.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
<version>${spring.boot.version}</version>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>6.2.5.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit bb57195

Please sign in to comment.