Skip to content

Commit 2895d56

Browse files
author
heavyrian2012
committed
update version and readme
1 parent 84dd8e9 commit 2895d56

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ npm run build
2828
```shell
2929
mvn clean package
3030
```
31-
生产软件包```channel-api.jar``````target```目录下。
31+
生产软件包```channel-server-0.1.0.jar``````target```目录下。
3232

3333
## 配置
3434
默认使用h2db,可以不用修改配置直接运行。如果要是想使用mysql,需要修改 ```server/config/application-{dev|prod}.yml```文件,按照说明配置。
3535

3636
## 运行
37-
服务器安装有jdk1.8。把```server/config```目录拷贝到```channel-api.jar```同目录,然后执行下面语句:
37+
服务器安装有jdk1.8。把```server/config```目录拷贝到```channel-server-0.1.0.jar```同目录,然后执行下面语句:
3838
```shell
39-
java -jar channel-api.jar
39+
java -jar channel-server-0.1.0.jar
4040
```
4141

4242
## 登录

server/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
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
<groupId>cn.wildfirechat</groupId>
6-
<artifactId>channel-api</artifactId>
7-
<version>0.9.0</version>
6+
<artifactId>channel-server</artifactId>
7+
<version>0.1.0</version>
88
<packaging>jar</packaging>
9-
<description>channel-api</description>
9+
<description>channel-server</description>
1010

1111
<parent>
1212
<groupId>org.springframework.boot</groupId>
@@ -172,7 +172,6 @@
172172
</dependency>
173173
</dependencies>
174174
<build>
175-
<finalName>${project.artifactId}</finalName>
176175
<plugins>
177176
<plugin>
178177
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)