From aa39545901070179e403f3d16c27d97a0257464e Mon Sep 17 00:00:00 2001 From: imp Date: Wed, 8 Apr 2020 16:00:02 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'pom.xml'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新‘pom.xml’ --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b6089bc..9e5539d 100644 --- a/pom.xml +++ b/pom.xml @@ -7,8 +7,8 @@ 10.0 pom - 10.0-FEATURE-SNAPSHOT - 5.1-FEATURE-SNAPSHOT + 10.0-RELEASE-SNAPSHOT + 5.1-RELEASE-SNAPSHOT ${project.basedir}/webroot/WEB-INF From b23db8fee0aa09ab5ec97b1323079f80302a27d4 Mon Sep 17 00:00:00 2001 From: imp Date: Wed, 8 Apr 2020 16:01:40 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'plugin-demo/src/main/?= =?UTF-8?q?java/com/finebi/plugin/BIDesignBoxPlotChart.java'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 适配接口 --- .../src/main/java/com/finebi/plugin/BIDesignBoxPlotChart.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-demo/src/main/java/com/finebi/plugin/BIDesignBoxPlotChart.java b/plugin-demo/src/main/java/com/finebi/plugin/BIDesignBoxPlotChart.java index 1e98512..af2cf08 100644 --- a/plugin-demo/src/main/java/com/finebi/plugin/BIDesignBoxPlotChart.java +++ b/plugin-demo/src/main/java/com/finebi/plugin/BIDesignBoxPlotChart.java @@ -1,6 +1,6 @@ package com.finebi.plugin; -import com.finebi.conf.internalimp.component.ReportComponent; +import com.finebi.foundation.api.web.component.AssembleComponentFactory; import com.fr.decision.fun.impl.AbstractWebResourceProvider; import com.fr.intelli.record.Focus; import com.fr.intelli.record.Original; @@ -12,7 +12,7 @@ public class BIDesignBoxPlotChart extends AbstractWebResourceProvider { @Override public Atom attach() { - return ReportComponent.KEY; + return AssembleComponentFactory.getReportComponent(); } @Override From 3299d493a3974d8240ab508678fc5134b719d905 Mon Sep 17 00:00:00 2001 From: imp Date: Wed, 8 Apr 2020 16:02:39 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'plugin-demo/src/main/?= =?UTF-8?q?java/com/finebi/plugin/BIShowBoxPlotChart.java'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 适配接口 --- .../src/main/java/com/finebi/plugin/BIShowBoxPlotChart.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-demo/src/main/java/com/finebi/plugin/BIShowBoxPlotChart.java b/plugin-demo/src/main/java/com/finebi/plugin/BIShowBoxPlotChart.java index 74fc108..2a2e5a2 100644 --- a/plugin-demo/src/main/java/com/finebi/plugin/BIShowBoxPlotChart.java +++ b/plugin-demo/src/main/java/com/finebi/plugin/BIShowBoxPlotChart.java @@ -1,6 +1,6 @@ package com.finebi.plugin; -import com.finebi.conf.internalimp.component.ShowComponent; +import com.finebi.foundation.api.web.component.AssembleComponentFactory; import com.fr.decision.fun.impl.AbstractWebResourceProvider; import com.fr.intelli.record.Focus; import com.fr.intelli.record.Original; @@ -12,7 +12,7 @@ public class BIShowBoxPlotChart extends AbstractWebResourceProvider { @Override public Atom attach() { - return ShowComponent.KEY; + return AssembleComponentFactory.getShowComponent(); } @Override