修改服务注册地址
This commit is contained in:
parent
79034404a7
commit
fa375f67bb
|
|
@ -23,6 +23,7 @@ public class CorsConfig {
|
||||||
config.addAllowedOriginPattern("*");
|
config.addAllowedOriginPattern("*");
|
||||||
// 是什么请求头部
|
// 是什么请求头部
|
||||||
config.addAllowedHeader("*");
|
config.addAllowedHeader("*");
|
||||||
|
config.setAllowCredentials(false);
|
||||||
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(new PathPatternParser());
|
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(new PathPatternParser());
|
||||||
source.registerCorsConfiguration("/**", config);
|
source.registerCorsConfiguration("/**", config);
|
||||||
return new CorsWebFilter(source);
|
return new CorsWebFilter(source);
|
||||||
|
|
|
||||||
|
|
@ -110,10 +110,10 @@
|
||||||
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<!-- <dependency>-->
|
||||||
<groupId>org.springframework.boot</groupId>
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
||||||
<artifactId>spring-boot-devtools</artifactId>
|
<!-- <artifactId>spring-boot-devtools</artifactId>-->
|
||||||
</dependency>
|
<!-- </dependency>-->
|
||||||
|
|
||||||
<!--<dependency>
|
<!--<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
|
@ -233,6 +233,7 @@
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>2.6.2</version>
|
<version>2.6.2</version>
|
||||||
|
|
||||||
<configuration>
|
<configuration>
|
||||||
<includeSystemScope>true</includeSystemScope>
|
<includeSystemScope>true</includeSystemScope>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,13 @@ public class ProjectGeneralServiceImpl implements ProjectGeneralService {
|
||||||
* */
|
* */
|
||||||
@Override
|
@Override
|
||||||
public R addProjectGeneral(ProjectGeneralBean bean) {
|
public R addProjectGeneral(ProjectGeneralBean bean) {
|
||||||
int res = dao.addProjectGeneral(bean);
|
int res=0;
|
||||||
|
if(StringUtils.isEmpty(bean.getProId())){
|
||||||
|
res = dao.addProjectGeneral(bean);
|
||||||
|
}else{
|
||||||
|
res = dao.updateProjectGeneral(bean);
|
||||||
|
}
|
||||||
|
|
||||||
return res > 0 ? R.ok(null, "新增成功"):R.fail("新增失败");
|
return res > 0 ? R.ok(null, "新增成功"):R.fail("新增失败");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -2,13 +2,9 @@
|
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.bonus.bmw.basic.dao.ProjectGeneralDao">
|
<mapper namespace="com.bonus.bmw.basic.dao.ProjectGeneralDao">
|
||||||
<insert id="addProjectGeneral">
|
<insert id="addProjectGeneral">
|
||||||
MERGE INTO "ynrealname"."bm_project_general" target
|
insert into "ynrealname"."bm_project_general"
|
||||||
USING (SELECT #{proGeneralName} as "name", #{level} as "level_id") source
|
("name", "level_id","is_active" )
|
||||||
ON (target."name" = source."name" AND target."level_id" = source."level_id")
|
values (#{proGeneralName},#{level},1)
|
||||||
WHEN MATCHED THEN
|
|
||||||
UPDATE SET target."name" = source."name", target."level_id" = source."level_id"
|
|
||||||
WHEN NOT MATCHED THEN
|
|
||||||
INSERT ("name", "level_id") VALUES (source."name", source."level_id")
|
|
||||||
</insert>
|
</insert>
|
||||||
<update id="updateProjectGeneral">
|
<update id="updateProjectGeneral">
|
||||||
update "ynrealname"."bm_project_general" set "name" = #{proGeneralName},"level_id" = #{level}
|
update "ynrealname"."bm_project_general" set "name" = #{proGeneralName},"level_id" = #{level}
|
||||||
|
|
@ -28,7 +24,7 @@
|
||||||
COUNT(bp."name") AS proNum,
|
COUNT(bp."name") AS proNum,
|
||||||
WM_CONCAT(bp."pro_status") AS proStatusId,
|
WM_CONCAT(bp."pro_status") AS proStatusId,
|
||||||
td."value" AS "level",
|
td."value" AS "level",
|
||||||
'' AS proStatusName
|
'' proStatusName
|
||||||
FROM "ynrealname"."bm_project_general" bpg
|
FROM "ynrealname"."bm_project_general" bpg
|
||||||
LEFT JOIN "ynrealname"."bm_project" bp ON bp."project_general_id" = bpg."id" AND bp."is_active" = '1'
|
LEFT JOIN "ynrealname"."bm_project" bp ON bp."project_general_id" = bpg."id" AND bp."is_active" = '1'
|
||||||
LEFT JOIN "ynrealname"."t_dict" td ON td."id" = bpg."level_id" AND td."is_active" = '1'
|
LEFT JOIN "ynrealname"."t_dict" td ON td."id" = bpg."level_id" AND td."is_active" = '1'
|
||||||
|
|
@ -40,7 +36,7 @@
|
||||||
<if test="params.keyword != null and params.keyword != ''">
|
<if test="params.keyword != null and params.keyword != ''">
|
||||||
and (bpg."name" like concat('%',#{params.keyword},'%') OR td."value" like concat('%',#{params.keyword},'%'))
|
and (bpg."name" like concat('%',#{params.keyword},'%') OR td."value" like concat('%',#{params.keyword},'%'))
|
||||||
</if>
|
</if>
|
||||||
GROUP BY bpg."id", bpg."name", td."value"
|
GROUP BY bpg."id",bp."id", bpg."name", td."value" ,bp."pro_status"
|
||||||
</select>
|
</select>
|
||||||
<select id="getProGeneralCount" resultType="java.lang.Integer">
|
<select id="getProGeneralCount" resultType="java.lang.Integer">
|
||||||
select count(1) from
|
select count(1) from
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
<update id="finishProject">
|
<update id="finishProject">
|
||||||
update "ynrealname"."bm_project" set "pro_status" = '1'
|
update "ynrealname"."bm_project" set "pro_status" = '1'
|
||||||
where ID = #{id} and "is_active" = '1'
|
where "id" = #{id} and "is_active" = '1'
|
||||||
</update>
|
</update>
|
||||||
|
|
||||||
<update id="updWrkerRecord">
|
<update id="updWrkerRecord">
|
||||||
|
|
@ -43,12 +43,12 @@
|
||||||
<select id="getProList" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
<select id="getProList" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
||||||
SELECT
|
SELECT
|
||||||
bpg."name" AS proGeneralName,
|
bpg."name" AS proGeneralName,
|
||||||
bp."id",po.NAME AS companyName,bp."NAME" AS name,
|
bp."id",po."name" AS companyName,bp."name" AS name,
|
||||||
bp."pro_type" AS proType,bp."level_id" as levelId,
|
bp."pro_type" AS proType,bp."level_id" as levelId,
|
||||||
bp."pro_status" AS proStatus,bp."project_address" AS projectAddress,td."value" as levelName
|
bp."pro_status" AS proStatus,bp."project_address" AS projectAddress,td."value" as levelName
|
||||||
FROM "ynrealname"."bm_project" bp
|
FROM "ynrealname"."bm_project" bp
|
||||||
LEFT JOIN "ynrealname"."bm_project_general" bpg ON bpg."id" = bp."project_general_id" AND bpg."is_active" = '1'
|
LEFT JOIN "ynrealname"."bm_project_general" bpg ON bpg."id" = bp."project_general_id" AND bpg."is_active" = '1'
|
||||||
LEFT JOIN "ynrealname"."pm_company" pc ON bp."company_id" = pc.ID
|
LEFT JOIN "ynrealname"."pm_company" pc ON bp."company_id" = pc."id"
|
||||||
LEFT JOIN "ynrealname"."pm_organization" po ON bp."company_id" = po."id"
|
LEFT JOIN "ynrealname"."pm_organization" po ON bp."company_id" = po."id"
|
||||||
LEFT JOIN "ynrealname"."t_dict" td ON td."id" = bp."level_id"
|
LEFT JOIN "ynrealname"."t_dict" td ON td."id" = bp."level_id"
|
||||||
LEFT JOIN "ynrealname"."bm_sub_contract" bsc on bsc."pro_id" = bp."id" and bsc."is_active" = '1'
|
LEFT JOIN "ynrealname"."bm_sub_contract" bsc on bsc."pro_id" = bp."id" and bsc."is_active" = '1'
|
||||||
|
|
@ -63,13 +63,13 @@
|
||||||
AND bsc."sub_id" = #{params.subId}
|
AND bsc."sub_id" = #{params.subId}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.proId!=null and params.proId!='' ">
|
<if test="params.proId!=null and params.proId!='' ">
|
||||||
and bp.ID= #{params.proId}
|
and bp."id"= #{params.proId}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.proStatus!=null and params.proStatus!='' ">
|
<if test="params.proStatus!=null and params.proStatus!='' ">
|
||||||
and bp."pro_status"= #{params.proStatus}
|
and bp."pro_status"= #{params.proStatus}
|
||||||
</if>
|
</if>
|
||||||
GROUP BY
|
GROUP BY
|
||||||
bp."id", bpg."name", po.NAME, bp."NAME", bp."pro_type", bp."level_id", bp."pro_status", bp."project_address", td."value"
|
bp."id", bpg."name", po."name", bp."name", bp."pro_type", bp."level_id", bp."pro_status", bp."project_address", td."value"
|
||||||
<if test="offset != null and offset >= 0 and limit != null and limit >= 0">
|
<if test="offset != null and offset >= 0 and limit != null and limit >= 0">
|
||||||
OFFSET #{offset} ROWS FETCH NEXT #{limit} ROWS ONLY
|
OFFSET #{offset} ROWS FETCH NEXT #{limit} ROWS ONLY
|
||||||
</if>
|
</if>
|
||||||
|
|
@ -94,12 +94,12 @@
|
||||||
WHERE bpg."is_active" = '1'
|
WHERE bpg."is_active" = '1'
|
||||||
</select>
|
</select>
|
||||||
<select id="getProjectCount" resultType="java.lang.Integer">
|
<select id="getProjectCount" resultType="java.lang.Integer">
|
||||||
select count(1) from
|
select count(1) from
|
||||||
(
|
(
|
||||||
SELECT
|
SELECT
|
||||||
count(1)
|
count(1)
|
||||||
FROM "ynrealname"."bm_project" bp
|
FROM "ynrealname"."bm_project" bp
|
||||||
LEFT JOIN "ynrealname"."pm_company" pc ON bp."company_id" = pc.ID
|
LEFT JOIN "ynrealname"."pm_company" pc ON bp."company_id" = pc."id"
|
||||||
LEFT JOIN "ynrealname"."pm_organization" po ON bp."company_id" = po."id"
|
LEFT JOIN "ynrealname"."pm_organization" po ON bp."company_id" = po."id"
|
||||||
LEFT JOIN "ynrealname"."t_dict" td ON td."id" = bp."level_id"
|
LEFT JOIN "ynrealname"."t_dict" td ON td."id" = bp."level_id"
|
||||||
LEFT JOIN "ynrealname"."bm_sub_contract" bsc on bsc."pro_id" = bp."id" and bsc."is_active" = '1'
|
LEFT JOIN "ynrealname"."bm_sub_contract" bsc on bsc."pro_id" = bp."id" and bsc."is_active" = '1'
|
||||||
|
|
@ -114,7 +114,7 @@ select count(1) from
|
||||||
AND bsc."sub_id" = #{params.subId}
|
AND bsc."sub_id" = #{params.subId}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.proId!=null and params.proId!='' ">
|
<if test="params.proId!=null and params.proId!='' ">
|
||||||
and bp.ID= #{params.proId}
|
and bp."id"= #{params.proId}
|
||||||
</if>
|
</if>
|
||||||
<if test="params.proStatus!=null and params.proStatus!='' ">
|
<if test="params.proStatus!=null and params.proStatus!='' ">
|
||||||
and bp."pro_status"= #{params.proStatus}
|
and bp."pro_status"= #{params.proStatus}
|
||||||
|
|
@ -127,19 +127,19 @@ select count(1) from
|
||||||
SELECT
|
SELECT
|
||||||
bpg."id" AS proGeneralId,
|
bpg."id" AS proGeneralId,
|
||||||
bpg."name" AS proGeneralName,
|
bpg."name" AS proGeneralName,
|
||||||
bm_project."id" AS id,
|
pro."id" AS id,
|
||||||
bm_project."name",bm_project."abbreviation" as abbreviation,
|
pro."name",pro."abbreviation" as abbreviation,
|
||||||
bm_project."pro_type" as proType,bm_project."company_id" as companyId,
|
pro."pro_type" as proType,pro."company_id" as companyId,
|
||||||
bm_project."level_id" as levelId,bm_project."power_grid" as powerGrid,
|
pro."level_id" as levelId,pro."power_grid" as powerGrid,
|
||||||
bm_project."project_address" as projectAddress,bm_project."lon",
|
pro."project_address" as projectAddress,pro."lon",
|
||||||
bm_project."lat",bm_project."pro_status" as proStatus,
|
pro."lat",pro."pro_status" as proStatus,
|
||||||
bm_project."two_com_id" as twoComId,
|
pro."two_com_id" as twoComId,
|
||||||
bm_project."plan_start_time" as planStartTime,bm_project."plan_stop_time" as planStopTime,
|
pro."plan_start_time" as planStartTime,pro."plan_stop_time" as planStopTime,
|
||||||
bm_project."create_time" as createTime,bm_project."update_time" as updateTime,"owner_id" as ownerId,
|
pro."create_time" as createTime,pro."update_time" as updateTime,"owner_id" as ownerId,
|
||||||
bm_project."is_active" as isActive
|
pro."is_active" as isActive
|
||||||
FROM "ynrealname"."bm_project"
|
FROM "ynrealname"."bm_project" pro
|
||||||
LEFT JOIN "ynrealname"."bm_project_general" bpg ON bpg."id" = bm_project."project_general_id" AND bpg."is_active" = '1'
|
LEFT JOIN "ynrealname"."bm_project_general" bpg ON bpg."id" = pro."project_general_id" AND bpg."is_active" = '1'
|
||||||
WHERE bm_project."id" = #{id}
|
WHERE pro."id" = #{id}
|
||||||
</select>
|
</select>
|
||||||
<select id="getPowerLevel" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
<select id="getPowerLevel" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
||||||
select "id","value" from "ynrealname"."t_dict"
|
select "id","value" from "ynrealname"."t_dict"
|
||||||
|
|
@ -162,24 +162,24 @@ select count(1) from
|
||||||
GROUP BY "id", "name"
|
GROUP BY "id", "name"
|
||||||
</select>
|
</select>
|
||||||
<select id="getAllWorker" resultType="java.lang.Integer">
|
<select id="getAllWorker" resultType="java.lang.Integer">
|
||||||
select count(ID_NUMBER) from "ynrealname"."bm_project" bp
|
select count("id_number") from "ynrealname"."bm_project" bp
|
||||||
left join "ynrealname"."bm_worker_record" bwr on bp.ID = bwr.PROJECT_ID and bwr.IS_ACTIVE = '1'
|
left join "ynrealname"."bm_worker_record" bwr on bp.ID = bwr."project_id" and bwr."is_active" = '1'
|
||||||
where bp.ID = #{id} and bp."is_active" = '1' group by bp."id", bwr.ID_NUMBER
|
where bp."id" = #{id} and bp."is_active" = '1' group by bp."id", bwr."id_number"
|
||||||
</select>
|
</select>
|
||||||
<select id="isRepeat" resultType="java.lang.Integer">
|
<select id="isRepeat" resultType="java.lang.Integer">
|
||||||
select count(*) from "ynrealname"."bm_project"
|
select count(*) from "ynrealname"."bm_project"
|
||||||
where "name" = #{name} and "is_active" = '1'
|
where "name" = #{name} and "is_active" = '1'
|
||||||
</select>
|
</select>
|
||||||
<select id="getIdNumber" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
<select id="getIdNumber" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
||||||
select ID_NUMBER from "ynrealname"."bm_project" bp
|
select "id_number" from "ynrealname"."bm_project" bp
|
||||||
left join "ynrealname"."bm_worker_record" bwr on bp.ID = bwr."project_id" and bwr."is_active" = '1'
|
left join "ynrealname"."bm_worker_record" bwr on bp.ID = bwr."project_id" and bwr."is_active" = '1'
|
||||||
where bp.ID = #{id} and bp."is_active" = '1'
|
where bp."id" = #{id} and bp."is_active" = '1'
|
||||||
</select>
|
</select>
|
||||||
<select id="getEinTime" resultType="java.lang.String">
|
<select id="getEinTime" resultType="java.lang.String">
|
||||||
SELECT EIN_TIME as einTime
|
SELECT "ein_time" as einTime
|
||||||
FROM "ynrealname"."bm_worker_attend_history"
|
FROM "ynrealname"."bm_worker_attend_history"
|
||||||
WHERE ID_NUMBER = #{idNumber}
|
WHERE "id_number" = #{idNumber}
|
||||||
ORDER BY EIN_TIME desc
|
ORDER BY "ein_time" desc
|
||||||
FETCH FIRST 1 ROWS ONLY
|
FETCH FIRST 1 ROWS ONLY
|
||||||
</select>
|
</select>
|
||||||
<select id="getPowerLevelID" resultType="java.lang.String">
|
<select id="getPowerLevelID" resultType="java.lang.String">
|
||||||
|
|
@ -214,15 +214,14 @@ select count(1) from
|
||||||
GROUP BY bp."id", bp."name"
|
GROUP BY bp."id", bp."name"
|
||||||
</select>
|
</select>
|
||||||
<update id="workerHistory" parameterType="com.bonus.bmw.basic.entity.ProjectBean">
|
<update id="workerHistory" parameterType="com.bonus.bmw.basic.entity.ProjectBean">
|
||||||
update "ynrealname"."bm_worker_attend_history" set EXIT_TIME = #{exitTime}
|
update "ynrealname"."bm_worker_attend_history" set "ein_time" = #{exitTime}
|
||||||
where ID_NUMBER = #{idNumber} AND EIN_TIME = #{einTime}
|
where "id_number" = #{idNumber} AND "ein_time" = #{einTime}
|
||||||
and "is_active" = '1'
|
and "is_active" = '1'
|
||||||
</update>
|
</update>
|
||||||
<update id="updateProject">
|
<update id="updateProject">
|
||||||
update "ynrealname"."bm_project"
|
update "ynrealname"."bm_project"
|
||||||
set
|
set
|
||||||
"project_general_id" = #{proGeneralId},
|
"project_general_id" = #{proGeneralId},
|
||||||
ID = #{id},
|
|
||||||
"company_id" = #{companyId},
|
"company_id" = #{companyId},
|
||||||
"name" = #{name},
|
"name" = #{name},
|
||||||
"two_com_id" = #{twoComId},
|
"two_com_id" = #{twoComId},
|
||||||
|
|
@ -238,24 +237,24 @@ select count(1) from
|
||||||
"plan_start_time" = #{planStartTime},
|
"plan_start_time" = #{planStartTime},
|
||||||
"plan_stop_time" = #{planStopTime},
|
"plan_stop_time" = #{planStopTime},
|
||||||
"update_time" = now()
|
"update_time" = now()
|
||||||
where ID = #{id}
|
where "id" = #{id}
|
||||||
</update>
|
</update>
|
||||||
<select id="getOrg" parameterType="com.bonus.bmw.basic.entity.OrgBean" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
<select id="getOrg" parameterType="com.bonus.bmw.basic.entity.OrgBean" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
||||||
SELECT
|
SELECT
|
||||||
po.ID as companyId,
|
po."id" as companyId,
|
||||||
po.NAME as name
|
po."name" as name
|
||||||
FROM
|
FROM
|
||||||
"ynrealname"."pm_organization" po
|
"ynrealname"."pm_organization" po
|
||||||
WHERE
|
WHERE
|
||||||
po."is_active" = '1'
|
po."is_active" = '1'
|
||||||
<if test="companyId!=null and companyId!='' ">
|
<if test="companyId!=null and companyId!='' ">
|
||||||
and po.ID =#{companyId}
|
and po."id" =#{companyId}
|
||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
<select id="getCompanyFactor" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
<select id="getCompanyFactor" resultType="com.bonus.bmw.basic.entity.ProjectBean">
|
||||||
select pc.ID as companyId,pc.NAME as companyName
|
select pc."id" as companyId,pc."name" as companyName
|
||||||
from "ynrealname"."pm_company" pc
|
from "ynrealname"."pm_company" pc
|
||||||
where pc.IS_ACTIVE = '1'
|
where pc."is_active" = '1'
|
||||||
<!--<if test="params.companyId!=null and params.companyId!='' and params.companyId!= '-1' ">
|
<!--<if test="params.companyId!=null and params.companyId!='' and params.companyId!= '-1' ">
|
||||||
and FIND_IN_SET(pc.ID, getChildList (#{params.companyId}))
|
and FIND_IN_SET(pc.ID, getChildList (#{params.companyId}))
|
||||||
</if>-->
|
</if>-->
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -138,7 +138,13 @@
|
||||||
<artifactId>jackson-mapper-asl</artifactId>
|
<artifactId>jackson-mapper-asl</artifactId>
|
||||||
<version>1.9.13</version>
|
<version>1.9.13</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.dm</groupId>
|
||||||
|
<artifactId>DmJdbcDriver18</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${project.basedir}/lib/DmJdbcDriver18.jar</systemPath>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
||||||
|
|
@ -109,6 +109,9 @@
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<version>2.6.2</version>
|
<version>2.6.2</version>
|
||||||
|
<configuration>
|
||||||
|
<includeSystemScope>true</includeSystemScope>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue