mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-06-01 16:49:32 +02:00
#1334 Merge remote-tracking branch 'upstream/master' into feature/1334-md-object-attribute-comment-not-exist-bug
This commit is contained in:
commit
c68c9de156
bundles/com.e1c.v8codestyle.autosort
tests/com.e1c.v8codestyle.autosort.itests/src/com/e1c/v8codestyle/autosort/itests
@ -14,7 +14,8 @@ Bundle-RequiredExecutionEnvironment: JavaSE-11
|
|||||||
Automatic-Module-Name: com.e1c.v8codestyle.autosort
|
Automatic-Module-Name: com.e1c.v8codestyle.autosort
|
||||||
Bundle-ActivationPolicy: lazy
|
Bundle-ActivationPolicy: lazy
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Import-Package: com._1c.g5.v8.bm.common.collections;version="[4.0.0,5.0.0)",
|
Import-Package: com._1c.g5.v8.activitytracking.core;version="[1.0.0,2.0.0)",
|
||||||
|
com._1c.g5.v8.bm.common.collections;version="[4.0.0,5.0.0)",
|
||||||
com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
|
com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
|
||||||
com._1c.g5.v8.bm.core.event;version="[3.0.0,4.0.0)",
|
com._1c.g5.v8.bm.core.event;version="[3.0.0,4.0.0)",
|
||||||
com._1c.g5.v8.bm.integration;version="[11.0.0,12.0.0)",
|
com._1c.g5.v8.bm.integration;version="[11.0.0,12.0.0)",
|
||||||
|
@ -14,9 +14,10 @@ package com.e1c.v8codestyle.internal.autosort;
|
|||||||
|
|
||||||
import org.eclipse.core.runtime.Plugin;
|
import org.eclipse.core.runtime.Plugin;
|
||||||
|
|
||||||
|
import com._1c.g5.v8.activitytracking.core.ISystemIdleService;
|
||||||
import com._1c.g5.v8.dt.core.model.IModelEditingSupport;
|
import com._1c.g5.v8.dt.core.model.IModelEditingSupport;
|
||||||
import com._1c.g5.v8.dt.core.platform.IBmModelManager;
|
|
||||||
import com._1c.g5.v8.dt.core.platform.IConfigurationProvider;
|
import com._1c.g5.v8.dt.core.platform.IConfigurationProvider;
|
||||||
|
import com._1c.g5.v8.dt.core.platform.IDerivedDataManagerProvider;
|
||||||
import com.e1c.g5.v8.dt.cli.api.components.BaseCliCommandExternalDependencyModule;
|
import com.e1c.g5.v8.dt.cli.api.components.BaseCliCommandExternalDependencyModule;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -38,9 +39,10 @@ class ExternalDependenciesModule
|
|||||||
{
|
{
|
||||||
super.doConfigure();
|
super.doConfigure();
|
||||||
// V8 DT
|
// V8 DT
|
||||||
bind(IBmModelManager.class).toService();
|
|
||||||
bind(IConfigurationProvider.class).toService();
|
bind(IConfigurationProvider.class).toService();
|
||||||
bind(IModelEditingSupport.class).toService();
|
bind(IModelEditingSupport.class).toService();
|
||||||
|
bind(ISystemIdleService.class).toService();
|
||||||
|
bind(IDerivedDataManagerProvider.class).toService();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,9 @@
|
|||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package com.e1c.v8codestyle.autosort.itests;
|
package com.e1c.v8codestyle.autosort.itests;
|
||||||
|
|
||||||
|
import com._1c.g5.v8.activitytracking.core.ISystemIdleService;
|
||||||
import com._1c.g5.v8.dt.core.platform.IBmModelManager;
|
import com._1c.g5.v8.dt.core.platform.IBmModelManager;
|
||||||
|
import com._1c.g5.v8.dt.core.platform.IDerivedDataManagerProvider;
|
||||||
import com._1c.g5.v8.dt.core.platform.IDtProjectManager;
|
import com._1c.g5.v8.dt.core.platform.IDtProjectManager;
|
||||||
import com._1c.g5.wiring.AbstractServiceAwareModule;
|
import com._1c.g5.wiring.AbstractServiceAwareModule;
|
||||||
import com.e1c.v8codestyle.autosort.ISortService;
|
import com.e1c.v8codestyle.autosort.ISortService;
|
||||||
@ -39,6 +41,8 @@ public class ExternalDependenciesModule
|
|||||||
bind(ISortService.class).toService();
|
bind(ISortService.class).toService();
|
||||||
bind(IBmModelManager.class).toService();
|
bind(IBmModelManager.class).toService();
|
||||||
bind(IDtProjectManager.class).toService();
|
bind(IDtProjectManager.class).toService();
|
||||||
|
bind(ISystemIdleService.class).toService();
|
||||||
|
bind(IDerivedDataManagerProvider.class).toService();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user