Skip to content

Commit e6fb6ca

Browse files
authored
change group id to io.esastack (#6)
1 parent fae1758 commit e6fb6ca

4 files changed

Lines changed: 21 additions & 14 deletions

File tree

.github/workflows/maven.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
if: github.event.inputs.profiles != ''
4040
run: mvn -P ${{ github.event.inputs.profiles }} clean package
4141
- name: Upload coverage to Codecov
42+
if: github.event_name == 'push'
4243
uses: codecov/codecov-action@v1.0.15
4344
with:
4445
token: ${{secrets.CODECOV_TOKEN}}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Build](https://github.com/esastack/esa-httpserver/workflows/Build/badge.svg?branch=main)
44
[![codecov](https://codecov.io/gh/esastack/esa-httpserver/branch/main/graph/badge.svg?token=C6JT3SKXX5)](https://codecov.io/gh/esastack/esa-httpserver)
5-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.esastack/httpserver/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.esastack/httpserver/)
5+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.esastack/httpserver/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.esastack/httpserver/)
66
[![GitHub license](https://img.shields.io/github/license/esastack/esa-httpserver)](https://github.com/esastack/esa-httpserver/blob/main/LICENSE)
77

88
ESA HttpServer is an asynchronous event-driven http server based on netty.
@@ -24,7 +24,7 @@ ESA HttpServer is an asynchronous event-driven http server based on netty.
2424

2525
```xml
2626
<dependency>
27-
<groupId>com.github.esastack</groupId>
27+
<groupId>io.esastack</groupId>
2828
<artifactId>httpserver</artifactId>
2929
<version>${esa-httpserver.version}</version>
3030
</dependency>

httpserver/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@
1919
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2020
<modelVersion>4.0.0</modelVersion>
2121
<parent>
22-
<groupId>com.github.esastack</groupId>
22+
<groupId>io.esastack</groupId>
2323
<artifactId>httpserver-parent</artifactId>
24-
<version>0.0.1-SNAPSHOT</version>
24+
<version>0.1.0-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>httpserver</artifactId>
2727
<name>HttpsServer :: Core</name>
2828

2929
<dependencies>
3030
<dependency>
31-
<groupId>com.github.esastack</groupId>
31+
<groupId>io.esastack</groupId>
3232
<artifactId>commons</artifactId>
3333
</dependency>
3434
<dependency>
35-
<groupId>com.github.esastack</groupId>
35+
<groupId>io.esastack</groupId>
3636
<artifactId>commons-http</artifactId>
3737
</dependency>
3838
<dependency>
39-
<groupId>com.github.esastack</groupId>
39+
<groupId>io.esastack</groupId>
4040
<artifactId>commons-netty-http</artifactId>
4141
</dependency>
4242
<dependency>

pom.xml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2020
<modelVersion>4.0.0</modelVersion>
2121

22-
<groupId>com.github.esastack</groupId>
22+
<groupId>io.esastack</groupId>
2323
<artifactId>httpserver-parent</artifactId>
2424
<packaging>pom</packaging>
25-
<version>0.0.1-SNAPSHOT</version>
25+
<version>0.1.0-SNAPSHOT</version>
2626

2727
<name>HttpServer</name>
2828
<description>
@@ -118,7 +118,7 @@
118118
<project.build.sourceEncoding>${encoding}</project.build.sourceEncoding>
119119
<project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding>
120120
<excludes-tests>**/it/**Test.java</excludes-tests>
121-
<esa-commons.version>0.0.1</esa-commons.version>
121+
<esa-commons.version>0.1.0</esa-commons.version>
122122
<netty.version>4.1.52.Final</netty.version>
123123
<netty-tcnative.version>2.0.34.Final</netty-tcnative.version>
124124
<jzlib.version>1.1.3</jzlib.version>
@@ -144,17 +144,17 @@
144144
<dependencyManagement>
145145
<dependencies>
146146
<dependency>
147-
<groupId>com.github.esastack</groupId>
147+
<groupId>io.esastack</groupId>
148148
<artifactId>commons</artifactId>
149149
<version>${esa-commons.version}</version>
150150
</dependency>
151151
<dependency>
152-
<groupId>com.github.esastack</groupId>
152+
<groupId>io.esastack</groupId>
153153
<artifactId>commons-http</artifactId>
154154
<version>${esa-commons.version}</version>
155155
</dependency>
156156
<dependency>
157-
<groupId>com.github.esastack</groupId>
157+
<groupId>io.esastack</groupId>
158158
<artifactId>commons-netty-http</artifactId>
159159
<version>${esa-commons.version}</version>
160160
</dependency>
@@ -259,6 +259,12 @@
259259
<groupId>org.sonatype.plugins</groupId>
260260
<artifactId>nexus-staging-maven-plugin</artifactId>
261261
<version>1.6.8</version>
262+
<extensions>true</extensions>
263+
<configuration>
264+
<serverId>ossrh</serverId>
265+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
266+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
267+
</configuration>
262268
</plugin>
263269
<plugin>
264270
<groupId>org.apache.maven.plugins</groupId>
@@ -294,7 +300,7 @@
294300
<version>8.35</version>
295301
</dependency>
296302
<dependency>
297-
<groupId>com.github.esastack</groupId>
303+
<groupId>io.esastack</groupId>
298304
<artifactId>commons-build</artifactId>
299305
<version>${esa-commons.version}</version>
300306
</dependency>

0 commit comments

Comments
 (0)