update parent

This commit is contained in:
N1KO 2024-11-26 18:18:56 +08:00
parent 3519443037
commit c682db1bfc
8 changed files with 27 additions and 32 deletions

View File

@ -10,7 +10,7 @@
</parent>
<artifactId>frame-auth</artifactId>
<version>${frame.release.auth.version}</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<properties>

View File

@ -10,7 +10,7 @@
</parent>
<artifactId>frame-common</artifactId>
<version>${frame.release.common.version}</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<properties>

View File

@ -10,7 +10,7 @@
</parent>
<artifactId>frame-core</artifactId>
<version>${frame.release.core.version}</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<properties>
@ -31,11 +31,6 @@
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>

View File

@ -10,7 +10,7 @@
</parent>
<artifactId>frame-ons</artifactId>
<version>${frame.release.ons.version}</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<properties>

View File

@ -10,7 +10,7 @@
</parent>
<artifactId>frame-redis</artifactId>
<version>${frame.release.redis.version}</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<properties>

View File

@ -10,7 +10,7 @@
</parent>
<artifactId>frame-uuid</artifactId>
<version>${frame.release.uuid.version}</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<properties>

View File

@ -16,13 +16,13 @@
<insert id="addWorkerNode" useGeneratedKeys="true" keyProperty="id"
parameterType="com.baogutang.frame.uuid.worker.entity.WorkerNodeEntity">
INSERT INTO WORKER_NODE
(HOST_NAME,
PORT,
TYPE,
LAUNCH_DATE,
MODIFIED,
CREATED)
INSERT INTO worker_node
(host_name,
port,
type,
launch_date,
modified,
created)
VALUES (#{hostName},
#{port},
#{type},
@ -32,16 +32,16 @@
</insert>
<select id="getWorkerNodeByHostPort" resultMap="workerNodeMap">
SELECT ID,
HOST_NAME,
PORT,
TYPE,
LAUNCH_DATE,
MODIFIED,
CREATED
FROM WORKER_NODE
WHERE HOST_NAME = #{host}
AND PORT = #{port}
SELECT id,
host_name,
port,
type,
launch_date,
modified,
created
FROM worker_node
WHERE host_name = #{host}
AND port = #{port}
</select>
</mapper>

View File

@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.2</version>
<version>2.3.2.RELEASE</version>
</parent>
<groupId>com.baogutang.framework</groupId>
@ -46,9 +46,9 @@
<frame.release.ons.version>1.0.0</frame.release.ons.version>
<!--3th jar-->
<spring.boot.version>2.4.2</spring.boot.version>
<spring-cloud.version>2020.0.6</spring-cloud.version>
<spring.cloud.alibaba.version>2021.1</spring.cloud.alibaba.version>
<spring.boot.version>2.3.2.RELEASE</spring.boot.version>
<spring-cloud.version>Hoxton.SR9</spring-cloud.version>
<spring.cloud.alibaba.version>2.2.6.RELEASE</spring.cloud.alibaba.version>
<spring.cloud.starter.alibaba.config.version>2021.1</spring.cloud.starter.alibaba.config.version>
<spring.cloud.loadbalancer.version>3.1.8</spring.cloud.loadbalancer.version>
<mybatis.plus.boot.version>3.5.2</mybatis.plus.boot.version>