File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 11import com .typesafe .sbt .site .SitePlugin .autoImport .siteDirectory
22import org .scalafmt .sbt .ScalafmtPlugin .autoImport .scalafmtOnCompile
3- import org .tmt .sbt .docs .DocKeys ._
4- import sbt .Keys ._
5- import sbt ._
3+ import org .tmt .sbt .docs .DocKeys .*
4+ import sbt .Keys .*
5+ import sbt .*
66import sbt .librarymanagement .ScmInfo
77import sbtunidoc .GenJavadocPlugin .autoImport .unidocGenjavadocVersion
8+ import scoverage .ScoverageKeys .coverageExcludedFiles
89
910object Common {
1011 private val enableFatalWarnings : Boolean = sys.props.get(" enableFatalWarnings" ).contains(" true" )
@@ -80,6 +81,8 @@ object Common {
8081 SettingKey [Boolean ](" ide-skip-project" ),
8182 aggregate, // verify if this needs to be here or our configuration is wrong
8283 unidocGenjavadocVersion // verify if this needs to be here or our configuration is wrong
83- )
84+ ),
85+ coverageExcludedFiles :=
86+ " .*/AgentPekkoSerializer;.*/AgentWiring;.*/AgentApp;.*/ProcessExecutor;.*/GatewayMain;.*/SequenceManagerApp;.*/SimulationScript;.*/SequencerWiring;.*/SequenceComponentWiring;.*/SequencerApp;.*/EswCommand;.*/Keycloak;.*/AgentServiceApp;.*/BuildInfo;.*/.*Codecs;.*/AgentCliCommand;.*/AgentServiceApi;.*/ComponentNotFoundException;.*/ContainerConfig;.*/EitherExt;.*/EitherOps;.*/Failed;.*/EventApi;.*/StartOptions;.*/StartOptions;.*/ScriptError;.*/UnhandledCommandException;.*/ProvisionVersionFailure;.*/SequenceManagerResponses;.*/Timeouts;.*/ProcessUtils;.*/HostConfig"
8487 )
8588}
You can’t perform that action at this time.
0 commit comments