Skip to content

Commit

Permalink
build: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
weiraneve committed Mar 30, 2024
1 parent 2abe315 commit 070bff9
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## 前言
项目是基于Java微服务方案的商品秒杀系统。是前后端分离的项目。前端用React完成web前端;后端为Java的Spring cloud微服务架构,客户端用flutter跨平台完成mobile端,小程序端用uniapp完成。

本项目版本迭代至1.0.6,欢迎各位多多交流。
本项目版本迭代至1.0.7,欢迎各位多多交流。

## 项目的web前端与客户端
- [本项目的秒杀部分Web前端](https://github.com/weiraneve/seckill-front)
Expand Down
2 changes: 1 addition & 1 deletion cloud-gateway/Dockerfile-gateway
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-gateway-1.0.6.jar /app/cloud-gateway.jar
COPY ./target/cloud-gateway-1.0.7.jar /app/cloud-gateway.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion cloud-manage/Dockerfile-manage
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-manage-1.0.6.jar /app/cloud-manage.jar
COPY ./target/cloud-manage-1.0.7.jar /app/cloud-manage.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion cloud-manage/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ logging:
config: classpath:logback.xml

app:
version: 1.0.6
version: 1.0.7
swagger:
title: 微服务秒杀系统-后台接口文档
2 changes: 1 addition & 1 deletion cloud-mission/Dockerfile-mission
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-mission-1.0.6.jar /app/cloud-mission.jar
COPY ./target/cloud-mission-1.0.7.jar /app/cloud-mission.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion cloud-mission/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ logging:
config: classpath:logback.xml

app:
version: 1.0.6
version: 1.0.7
swagger:
title: 微服务秒杀系统-秒杀接口文档
2 changes: 1 addition & 1 deletion cloud-monitor/Dockerfile-monitor
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-monitor-1.0.6.jar /app/cloud-monitor.jar
COPY ./target/cloud-monitor-1.0.7.jar /app/cloud-monitor.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion cloud-uaa/Dockerfile-uaa
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM adoptopenjdk/openjdk8:jdk8u345-b01-debian-slim

WORKDIR /app

COPY ./target/cloud-uaa-1.0.6.jar /app/cloud-uaa.jar
COPY ./target/cloud-uaa-1.0.7.jar /app/cloud-uaa.jar

ENV LANG=en_US.UTF8
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion cloud-uaa/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ logging:
config: classpath:logback.xml

app:
version: 1.0.6
version: 1.0.7
swagger:
title: 微服务秒杀系统-登录接口文档
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
build:
context: ./cloud-mission
dockerfile: Dockerfile-mission
image: cloud-mission:1.0.6
image: cloud-mission:1.0.7
ports:
- "8888:8888"
environment:
Expand All @@ -26,7 +26,7 @@ services:
build:
context: ./cloud-uaa
dockerfile: Dockerfile-uaa
image: cloud-uaa:1.0.6
image: cloud-uaa:1.0.7
ports:
- "8088:8088"
environment:
Expand All @@ -45,7 +45,7 @@ services:
build:
context: ./cloud-manage
dockerfile: Dockerfile-manage
image: cloud-manage:1.0.6
image: cloud-manage:1.0.7
ports:
- "8070:8070"
environment:
Expand All @@ -64,7 +64,7 @@ services:
build:
context: ./cloud-gateway
dockerfile: Dockerfile-gateway
image: cloud-gateway:1.0.6
image: cloud-gateway:1.0.7
ports:
- "8205:8205"
environment:
Expand All @@ -78,7 +78,7 @@ services:
build:
context: ./cloud-monitor
dockerfile: Dockerfile-monitor
image: cloud-monitor:1.0.6
image: cloud-monitor:1.0.7
ports:
- "8890:8890"
environment:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<swagger2-version>2.9.2</swagger2-version>
<admin-version>2.3.0</admin-version>
<admin-version>2.3.0</admin-version>
<seckillcloud.version>1.0.6</seckillcloud.version>
<seckillcloud.version>1.0.7</seckillcloud.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 070bff9

Please sign in to comment.