mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-11-30 10:58:14 +08:00
2.4.3 patch
This commit is contained in:
parent
065ef52eec
commit
397520184e
@ -8,6 +8,8 @@
|
||||
1. 【Server】新项目打开项目控制台页面报错(感谢@黄战虎)
|
||||
2. 【Server】修改邮箱不及时生效问题(感谢@WeChat)
|
||||
3. 【Server】修护发布构建产物路径bug(感谢@Sawyer)
|
||||
4. 优化执行命令方式
|
||||
5. 脚本模板在linux 不添加权限(采用sh 方式执行)
|
||||
|
||||
-----------------------------------------------------------
|
||||
|
||||
|
@ -5,12 +5,12 @@
|
||||
<parent>
|
||||
<artifactId>jpom-parent</artifactId>
|
||||
<groupId>io.jpom</groupId>
|
||||
<version>2.4.4</version>
|
||||
<version>2.4.3-patch</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>agent</artifactId>
|
||||
<version>2.4.4</version>
|
||||
<version>2.4.3-patch</version>
|
||||
<name>Jpom 插件端</name>
|
||||
<properties>
|
||||
<start-class>io.jpom.JpomAgentApplication</start-class>
|
||||
|
@ -5,13 +5,13 @@
|
||||
<parent>
|
||||
<artifactId>jpom-parent</artifactId>
|
||||
<groupId>io.jpom</groupId>
|
||||
<version>2.4.4</version>
|
||||
<version>2.4.3-patch</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<name>Jpom 公共模块</name>
|
||||
<artifactId>common</artifactId>
|
||||
<version>2.4.4</version>
|
||||
<version>2.4.3-patch</version>
|
||||
|
||||
<dependencies>
|
||||
<!-- 文件编码识别-->
|
||||
|
@ -5,13 +5,13 @@
|
||||
<parent>
|
||||
<artifactId>jpom-parent</artifactId>
|
||||
<groupId>io.jpom</groupId>
|
||||
<version>2.4.4</version>
|
||||
<version>2.4.3-patch</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<name>Jpom 服务端</name>
|
||||
<artifactId>server</artifactId>
|
||||
<version>2.4.4</version>
|
||||
<version>2.4.3-patch</version>
|
||||
<properties>
|
||||
<start-class>io.jpom.JpomServerApplication</start-class>
|
||||
</properties>
|
||||
|
@ -47,7 +47,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr th:if="${data?.process}">
|
||||
<tr th:if="${data?.get('process')}">
|
||||
<td th:text="${data?.process?.pid}"></td>
|
||||
<td th:text="${data?.process?.command}"></td>
|
||||
<td th:text="${data?.process?.user}"></td>
|
||||
@ -61,7 +61,7 @@
|
||||
<td th:text="${data?.process?.virt}"></td>
|
||||
<td th:text="${data?.process?.shr}"></td>
|
||||
</tr>
|
||||
<tr th:unless="${data?.process}">
|
||||
<tr th:unless="${data?.get('process')}">
|
||||
<td colspan=12 style="text-align:center">无数据</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
Loading…
Reference in New Issue
Block a user