Skip to content

Commit eb3a9b0

Browse files
authored
Bump version to 1.8.9 (#3566)
* chore: update release configuration * Bump version to 1.8.9
1 parent 7e17ae7 commit eb3a9b0

File tree

95 files changed

+295
-95
lines changed

Some content is hidden

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

95 files changed

+295
-95
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ If you're using Maven, just add the following dependency in `pom.xml`.
6565
<dependency>
6666
<groupId>com.alibaba.csp</groupId>
6767
<artifactId>sentinel-core</artifactId>
68-
<version>1.8.8</version>
68+
<version>1.8.9</version>
6969
</dependency>
7070
```
7171

pom.xml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</issueManagement>
4141

4242
<properties>
43-
<revision>1.8.8</revision>
43+
<revision>1.8.9</revision>
4444
<!-- Compile libs -->
4545
<fastjson.version>1.2.83_noneautotype</fastjson.version>
4646
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
@@ -379,7 +379,7 @@
379379

380380
<profiles>
381381
<profile>
382-
<id>oss</id>
382+
<id>central</id>
383383
<build>
384384
<plugins>
385385
<!-- Source -->
@@ -430,16 +430,26 @@
430430
</execution>
431431
</executions>
432432
</plugin>
433+
<!-- central -->
434+
<plugin>
435+
<groupId>org.sonatype.central</groupId>
436+
<artifactId>central-publishing-maven-plugin</artifactId>
437+
<version>0.8.0</version>
438+
<extensions>true</extensions>
439+
<configuration>
440+
<publishingServerId>central</publishingServerId>
441+
</configuration>
442+
</plugin>
433443
</plugins>
434444
</build>
435445
<distributionManagement>
436446
<snapshotRepository>
437-
<id>oss</id>
438-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
447+
<id>central</id>
448+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
439449
</snapshotRepository>
440450
<repository>
441-
<id>oss</id>
442-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
451+
<id>central</id>
452+
<url>https://central.sonatype.org/service/local/staging/deploy/maven2/</url>
443453
</repository>
444454
</distributionManagement>
445455
</profile>

sentinel-adapter/sentinel-apache-dubbo-adapter/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>${project.groupId}:${project.artifactId}</name>
14+
1315
<artifactId>sentinel-apache-dubbo-adapter</artifactId>
1416
<packaging>jar</packaging>
1517

sentinel-adapter/sentinel-apache-dubbo3-adapter/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>${project.groupId}:${project.artifactId}</name>
14+
1315
<artifactId>sentinel-apache-dubbo3-adapter</artifactId>
1416
<packaging>jar</packaging>
1517

sentinel-adapter/sentinel-apache-httpclient-adapter/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>${project.groupId}:${project.artifactId}</name>
14+
1315
<artifactId>sentinel-apache-httpclient-adapter</artifactId>
1416
<packaging>jar</packaging>
1517

sentinel-adapter/sentinel-api-gateway-adapter-common/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212

13+
<name>${project.groupId}:${project.artifactId}</name>
14+
1315
<artifactId>sentinel-api-gateway-adapter-common</artifactId>
1416
<packaging>jar</packaging>
1517

sentinel-adapter/sentinel-dubbo-adapter/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modelVersion>4.0.0</modelVersion>
13+
14+
<name>${project.groupId}:${project.artifactId}</name>
1315
<artifactId>sentinel-dubbo-adapter</artifactId>
1416
<packaging>jar</packaging>
1517

sentinel-adapter/sentinel-grpc-adapter/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
12+
13+
<name>${project.groupId}:${project.artifactId}</name>
1214
<artifactId>sentinel-grpc-adapter</artifactId>
1315
<packaging>jar</packaging>
1416

sentinel-adapter/sentinel-jax-rs-adapter/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6+
<name>${project.groupId}:${project.artifactId}</name>
7+
68
<parent>
79
<groupId>com.alibaba.csp</groupId>
810
<artifactId>sentinel-adapter</artifactId>

sentinel-adapter/sentinel-motan-adapter/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
12+
13+
<name>${project.groupId}:${project.artifactId}</name>
1214
<artifactId>sentinel-motan-adapter</artifactId>
1315
<packaging>jar</packaging>
1416

0 commit comments

Comments
 (0)