Skip to content

Commit b55c765

Browse files
committed
commit release 2.11.4
1 parent d8f530b commit b55c765

File tree

30 files changed

+41
-41
lines changed

30 files changed

+41
-41
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
JPOM_VERSION=2.11.3
1+
JPOM_VERSION=2.11.4
22
# Server Token 生产部署请更换
33
SERVER_TOKEN=7094f673-2c53-4fc1-82e7-86e528449d97

.workflow/MasterPipeline.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ stages:
3939
artifacts:
4040
- name: all_zip
4141
path:
42-
- modules/server/target/server-2.11.3-release.zip
43-
- modules/agent/target/agent-2.11.3-release.zip
42+
- modules/server/target/server-2.11.4-release.zip
43+
- modules/agent/target/agent-2.11.4-release.zip
4444
- name: server_zip
4545
path:
46-
- modules/server/target/server-2.11.3-release.zip
46+
- modules/server/target/server-2.11.4-release.zip
4747
- name: agent_zip
4848
path:
49-
- modules/agent/target/agent-2.11.3-release.zip
49+
- modules/agent/target/agent-2.11.4-release.zip
5050
settings: []
5151
strategy:
5252
retry: '0'
@@ -60,7 +60,7 @@ stages:
6060
name: publish_general_artifacts
6161
displayName: 合并打包
6262
dependArtifact: all_zip
63-
artifactName: jpom-2.11.3
63+
artifactName: jpom-2.11.4
6464
strategy:
6565
retry: '0'
6666
strategy:

env-release.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
JPOM_VERSION=2.11.3
1+
JPOM_VERSION=2.11.4
22
# Server Token 生产部署请更换
33
SERVER_TOKEN=7094f673-2c53-4fc1-82e7-86e528449d97

modules/agent-transport/agent-transport-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.dromara.jpom.agent-transport</groupId>
1919
<artifactId>jpom-agent-transport-parent</artifactId>
20-
<version>2.11.3.2</version>
20+
<version>2.11.4</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323

modules/agent-transport/agent-transport-http/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.dromara.jpom.agent-transport</groupId>
1919
<artifactId>jpom-agent-transport-parent</artifactId>
20-
<version>2.11.3.2</version>
20+
<version>2.11.4</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323

modules/agent-transport/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<artifactId>jpom-parent</artifactId>
1818
<groupId>org.dromara.jpom</groupId>
19-
<version>2.11.3.2</version>
19+
<version>2.11.4</version>
2020
<relativePath>../../pom.xml</relativePath>
2121
</parent>
2222
<packaging>pom</packaging>
@@ -25,7 +25,7 @@
2525
<module>agent-transport-http</module>
2626
</modules>
2727
<modelVersion>4.0.0</modelVersion>
28-
<version>2.11.3.2</version>
28+
<version>2.11.4</version>
2929
<groupId>org.dromara.jpom.agent-transport</groupId>
3030
<artifactId>jpom-agent-transport-parent</artifactId>
3131
<name>Jpom Agent Transport</name>

modules/agent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
<parent>
1717
<artifactId>jpom-parent</artifactId>
1818
<groupId>org.dromara.jpom</groupId>
19-
<version>2.11.3.2</version>
19+
<version>2.11.4</version>
2020
<relativePath>../../pom.xml</relativePath>
2121
</parent>
2222
<modelVersion>4.0.0</modelVersion>
2323
<artifactId>agent</artifactId>
24-
<version>2.11.3.2</version>
24+
<version>2.11.4</version>
2525
<name>Jpom Agent</name>
2626
<properties>
2727
<start-class>org.dromara.jpom.JpomAgentApplication</start-class>

modules/common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<parent>
1717
<artifactId>jpom-parent</artifactId>
1818
<groupId>org.dromara.jpom</groupId>
19-
<version>2.11.3.2</version>
19+
<version>2.11.4</version>
2020
<relativePath>../../pom.xml</relativePath>
2121
</parent>
2222
<modelVersion>4.0.0</modelVersion>
2323
<name>Jpom Common</name>
2424
<artifactId>common</artifactId>
25-
<version>2.11.3.2</version>
25+
<version>2.11.4</version>
2626

2727
<dependencies>
2828

modules/common/src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
| |
88
|_|
99
➜ Jpom is licensed under Mulan PSL v2.
10-
➜ \ (•◡•) / (v2.11.3.2)
10+
➜ \ (•◡•) / (v2.11.4)

modules/server/DockerfileRelease

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ LABEL maintainer="bwcx-jzy <[email protected]>"
1616
LABEL documentation="https://jpom.top"
1717

1818
ENV JPOM_HOME /usr/local/jpom-server
19-
ENV JPOM_PKG_VERSION 2.11.3
19+
ENV JPOM_PKG_VERSION 2.11.4
2020
ENV JPOM_PKG server-${JPOM_PKG_VERSION}-release.tar.gz
2121
ENV SHA1_NAME server-${JPOM_PKG_VERSION}-release.tar.gz.sha1
2222

0 commit comments

Comments
 (0)