Browse Source

Merge branch 'master' of imp/bi-starter-5 into master

pull/1/head
richie 4 years ago committed by Gogs
parent
commit
c9add1dbed
  1. 4
      plugin-demo/src/main/java/com/finebi/plugin/BIDesignBoxPlotChart.java
  2. 4
      plugin-demo/src/main/java/com/finebi/plugin/BIShowBoxPlotChart.java
  3. 4
      pom.xml

4
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

4
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

4
pom.xml

@ -7,8 +7,8 @@
<version>10.0</version>
<packaging>pom</packaging>
<properties>
<univeral-framework-version>10.0-FEATURE-SNAPSHOT</univeral-framework-version>
<specific-framework-version>5.1-FEATURE-SNAPSHOT</specific-framework-version>
<univeral-framework-version>10.0-RELEASE-SNAPSHOT</univeral-framework-version>
<specific-framework-version>5.1-RELEASE-SNAPSHOT</specific-framework-version>
<web-inf-bucket>${project.basedir}/webroot/WEB-INF</web-inf-bucket>
</properties>
<modules>

Loading…
Cancel
Save