@@ -86,28 +86,6 @@ pipeline{
bat "${env.MAVEN_HOME}\\bin\\mvn clean package -e -U -Dmaven.test.skip=true"
}
-
- stage("代码质量检测"){
- when {
- environment name: 'mode',value: 'deploy'
- }
- steps {
- withSonarQubeEnv(installationName: 'sonar-scanner') {
- bat "${env.MAVEN_HOME}\\bin\\mvn sonar:sonar -DskipTests"
- stage("代码质量结果"){
- timeout(time: 1, unit: 'HOURS') {
- waitForQualityGate abortPipeline: true
stage("停止服务"){
steps {
@@ -5,11 +5,11 @@
<parent>
<groupId>com.platomix</groupId>
<artifactId>platomix-pom</artifactId>
- <version>1.2.1</version>
+ <version>1.2.2</version>
<relativePath />
</parent>
<artifactId>platomix-gmetry-etl</artifactId>
- <version>4.0.4</version>
+ <version>4.0.6-20241230</version>
<properties>
<flink.version>1.15.4</flink.version>
@@ -1,8 +1,18 @@
+/*
+ * Copyright (c) 2018-2028, AoKunSang All rights reserved.
+ * 我问青山何时老,青山问我几时闲,
+ * 不是闲人闲不得,能闲必非等闲人。
+ */
package org.springblade;
import org.springblade.core.boot.core.PlatomixApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
+/**
+ * <p>启动入口类</p>
+ * @author Aokunsang
+ * @datetime 2025-01-22 12:37:45
@SpringBootApplication
public class Application {
@@ -236,7 +236,10 @@ public class JobController extends BladeController {
log.info("ETL任务流程:暂停任务|jobId={},xxljobId={},ret={}", jobId, job.getXxlJobId(), jobStop);
- return doUpdate(entity);
+ entity.setUpdateBy(AuthUtil.getNickName());
+ entity.setUpdateUserId(AuthUtil.getUserId());
+ entity.setUpdateTime(LocalDateTime.now());
+ return R.status(jobService.updateById(entity));
/**