Compare commits

...

8 Commits

Author SHA1 Message Date
WangXuewen
19a35de391
Pre Merge pull request !34 from WangXuewen/master 2026-03-05 06:52:14 +00:00
648540858
a5674e82cb
Merge pull request #2086 from rongzedong/patch-2
Update compile.md ubuntu18的例子中,jre在编译的时候会报错,应该改为jdk。
2026-03-03 16:11:39 +08:00
648540858
70979adf34
Merge pull request #2087 from rongzedong/patch-3
Update Lombok version to 1.18.38
2026-03-02 10:51:24 +08:00
648540858
bf8707f4ef
Merge pull request #2088 from rongzedong/patch-4
Update install.sh
2026-03-02 10:51:01 +08:00
rongzedong
45cae46985
Update install.sh
修改 /bin/sh 为 /bin/bash
2026-02-26 17:29:50 +08:00
rongzedong
62eff3746c
Update Lombok version to 1.18.38
修改 lombok的版本, 两个依赖它的地方版本不同,低版本的报错。改为相同的 1.18.38 就可以了。
2026-02-26 17:20:29 +08:00
rongzedong
1bed6795e0
Update compile.md
ubuntu18的例子中,jre在编译的时候会报错,应该改为jdk。
2026-02-26 17:18:51 +08:00
wangxw
b05f770a57 解决sql错误,启动是PGSQL查询报错integer=boolean 2024-12-12 17:37:36 +08:00
3 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ WVP-PRO使用Spring boot开发maven管理依赖。对于熟悉spring开发的
ubuntu环境以ubuntu 18为例
``` bash
apt-get install -y openjdk-21-jre git maven nodejs npm
apt-get install -y openjdk-21-jdk git maven nodejs npm
```
window环境以windows10为例

View File

@ -1,4 +1,4 @@
#! /bin/sh
#! /bin/bash
WORD_DIR=$(cd $(dirname $0); pwd)
SERVICE_NAME="wvp"
@ -13,7 +13,7 @@ if [ "$(id -u)" -ne 0 ]; then
echo
fi
# 当前目录直接搜索(不含子目录)
# 当前目录直接搜索(不含子目录) bugfix 这里使用了需要bash才可以支持的内容
jar_files=(*.jar)
if [ ${#jar_files[@]} -eq 0 ]; then

View File

@ -441,7 +441,7 @@
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<version>1.18.38</version>
</path>
</annotationProcessorPaths>
</configuration>