直爽的哑铃
3 月前 |
I am using Scala version using 2.12.3 in my project. When i am trying to run code i am getting below error (with same version it works for others). Running code from sbt as well using eclipse IDE but still same issue. Crosscheck libraries version used in buildpath and installed version as well as check version sbt as well.
Version output from sbt prompt
sbtVersion
[info] basecamp/
:sbtVersion
[info] 0.13.15
scalaVersion
[info] basecamp/
:scalaVersion
[info] 2.12.3
Error Log:
Exception in thread “main” java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
at scala.util.parsing.json.Lexer.(Lexer.scala:81)
at scala.util.parsing.json.Parser.(Parser.scala:121)
at scala.util.parsing.json.JSON$.(JSON.scala:32)
at scala.util.parsing.json.JSON$.(JSON.scala)
at com.oed.scheduler.servlet.ReportSchedularListner.contextInitialized(ReportSchedularListner.scala:31)
at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized(ContextHandler.java:800)
at org.eclipse.jetty.servlet.ServletContextHandler.callContextInitialized(ServletContextHandler.java:444)
at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:791)
at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:294)
at org.eclipse.jetty.webapp.WebAppContext.startWebapp(WebAppContext.java:1349)
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1342)
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:741)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:505)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:163)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.server.Server.start(Server.java:387)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.Server.doStart(Server.java:354)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at basecamp.lib.servlet.ServletServer.start(ServletServer.scala:99)
at basecamp.dashboard.DashboardService.$anonfun$start$1(DashboardService.scala:134)
at basecamp.dashboard.DashboardService.$anonfun$start$1$adapted(DashboardService.scala:69)
at basecamp.lib.io.File.$anonfun$lock$3(File.scala:52)
at basecamp.lib.io.File.$anonfun$lock$3$adapted(File.scala:52)
at basecamp.lib.io.FileLockImpl.lock(File.scala:93)
at basecamp.lib.io.File.lock(File.scala:52)
at basecamp.dashboard.DashboardService.start(DashboardService.scala:136)
at basecamp.dashboard.DashboardService$.start(DashboardService.scala:244)
at basecamp.dashboard.DashboardService$.main(DashboardService.scala:240)
at basecamp.dashboard.DashboardService.main(DashboardService.scala)
I need urgent help on this issue. I did lots of troubleshooting on this issue, but no luck.
It appears you are using the Scala 2.11 version of the scala-parser-combinators library. If you are using Scala 2.12, all of your Scala-based libraries must be built for 2.12 specifically (as per this article ).
What does it look like in your
build.sbt
where you declare the dependency on scala-parser-combinators?
That looks fishy. Are you really providing the binary version to the artifact manually in your dependencies?
Why do you make it so hard for us to help you? Just show us your build.sbt and plugins.sbt so we can pinpoint the problem.
Otherwise, use sbt’s
dependencyTree
command and provide the output here (you need sbt +1.4 for this I think).
name := “basecamp-dashboard”
buildInfoPackage := “basecamp.dashboard”
buildInfoObject := “BuildInfo”
//basecamp-ui-dashboard-1.3.2.0.zip
dependencyOverrides := Set(“org.yaml” % “snakeyaml” % “1.26”,“io.netty” % “netty-codec” % “4.1.44.Final”, “io.netty” % “netty-all” % “4.1.44.Final”, “ch.qos.logback” % “logback-core” % “1.2.3”, “com.fasterxml.jackson.core” % “jackson-databind” % “2.10.5.1”)
val basecampUIDashboard = “basecamp” % “basecamp-ui-dashboard” % “2.4.2.0” artifacts(Artifact(“basecamp-ui-dashboard”, “dist”, “zip”))
unmanagedBase := baseDirectory.value / “lib”
excludeDependencies := Seq(“javax.servlet” % “servlet-api”)
libraryDependencies := Seq(
basecampUIDashboard,
“org.eclipse.jetty” % “apache-jstl” % “9.2.2.v20140723”,
“com.typesafe.akka” %% “akka-actor” % “2.5.31”,
“com.typesafe.akka” %% “akka-slf4j” % “2.5.31”,
“com.typesafe.akka” %% “akka-testkit” % “2.5.31” % Test,
“com.github.romix.akka” %% “akka-kryo-serialization” % “0.5.1”,
“commons-lang” % “commons-lang” % “2.6”,
“org.apache.commons” % “commons-lang3” % “3.4”,
“commons-collections” % “commons-collections” % “3.2.2”,
“org.eclipse.jetty” % “jetty-jsp” % “9.2.2.v20140723”,
“commons-logging” % “commons-logging” % “1.2”,
“org.slf4j” % “slf4j-api” % “1.7.16”,
“org.slf4j” % “jul-to-slf4j” % “1.7.21”,
“org.apache.derby” % “derby” % “10.14.2.0”,
“org.apache.derby” % “derbytools” % “10.14.2.0”,
“com.jsoniter” % “jsoniter” % “0.9.22”,
“org.postgresql” % “postgresql” % “42.2.5”,
“commons-dbcp” % “commons-dbcp” % “1.4”,
“org.scalatest” %% “scalatest” % “3.0.1” % Test,
“org.scalamock” %% “scalamock” % “4.1.0” % Test
def basecampUIDashboardResource(cache: java.io.File, moduleId: ModuleID): Map[File, String] = {
val ModuleID(organization, name, revision, _, _, _, _, explicitArtifacts, _, _, _) = moduleId
val distBaseName = s"${name}-${revision}"
val distFullName = s"${distBaseName}.${explicitArtifacts.head.extension}"
val distName = s"${name}.${explicitArtifacts.head.extension}"
val server = java.net.URLEncoder.encode(“tnpmartifactory.persistent.co.in:8082”, “UTF-8”)
val repo = cache / s"http/${server}/artifactory/libs-release-local" // XXX factor server details out
Map(repo / organization / name / revision / distFullName → s"resources/${distName}")
packMain := Map(“dashboard” → “basecamp.dashboard.DashboardService”)
packExpandedClasspath := true
packGenerateWindowsBatFile := false
packResourceDir ++= Seq(
(baseDirectory.value / “resources/conf” → “conf”),
(baseDirectory.value / “resources/blaze” → “resources/blaze”),
(baseDirectory.value / “resources/scripts/content-manager” → “bin/content-manager”),
(baseDirectory.value / “resources/dashboards” → “resources/dashboards”),
(baseDirectory.value / “resources/oed” → “resources/oed”),
(baseDirectory.value / “resources/config” → “resources/config”),
(baseDirectory.value / “resources/externalFiles” → “resources/externalFiles”),
(baseDirectory.value / “resources/config-ui-dashboard” → “resources/config-ui-dashboard”),
(baseDirectory.value / “resources/localization” → “resources/localization”),
(baseDirectory.value / “resources/yum” → “etc/yum”)
).toMap
packResourceDir ++= basecampUIDashboardResource(coursierCache.value, basecampUIDashboard)
If
show dependencyClasspath
doesn’t show any
_2.11
artifacts either, then another possibility is that the servlet environment in which you’re apparently running the code is putting different JARs on your classpath than you’re getting in sbt. Is the failure reproducible within sbt, or does it only happen after the app is deployed?
val repo = cache / s"http/${server}/artifactory/libs-release-local" // XXX factor server details out
Map(repo / organization / name / revision / distFullName → s"resources/${distName}")
Seems like you pack all jars from the libs-release-local
cache folder into your final artifact, with packExpandedClasspath := true
causing them to be referenced in your run script… ?!
Try to delete all *_2.11
jars from the cache…
[INFO] [2021-07-12 03:42:19.254] Logging initialized @636ms
[INFO] [2021-07-12 03:42:26.785] Initial postgre URL: jdbc:postgresql://10.53.17.144:30000/
[INFO] [2021-07-12 03:42:26.789] postgre URL: jdbc:postgresql://10.53.17.144:30000/prddb for datasource
[INFO] [2021-07-12 03:42:28.436] Starting basecamp-dashboard service v1…
[INFO] [2021-07-12 03:42:28.471] active UI hosts 10.53.17.144
[INFO] [2021-07-12 03:42:28.473] https://10.53.17.144:30021
[INFO] [2021-07-12 03:42:28.474] active UI hosts 10.53.17.144
[INFO] [2021-07-12 03:42:28.474] https://10.53.17.144:30021
[INFO] [2021-07-12 03:42:28.743] Attempt to create connection with https://dns-collector:30043/domain/
[INFO] [2021-07-12 03:42:28.775] Service not reachable
[INFO] [2021-07-12 03:42:28.775] dns-collector
[INFO] [2021-07-12 03:42:28.776] Attempt to create connection with https://flow-collector:30041/tos/
[INFO] [2021-07-12 03:42:28.778] Service not reachable
[INFO] [2021-07-12 03:42:28.785] flow-collector
[INFO] [2021-07-12 03:42:28.785] Attempt to create connection with https://analytics-batch:30029/ba/
[INFO] [2021-07-12 03:42:28.788] Service not reachable
[INFO] [2021-07-12 03:42:28.788] analytics-batch
[INFO] [2021-07-12 03:42:28.789] Attempt to create connection with https://flow-collector:30041/interface/
[INFO] [2021-07-12 03:42:28.792] Service not reachable
[INFO] [2021-07-12 03:42:28.792] flow-collector
[INFO] [2021-07-12 03:42:28.792] Attempt to create connection with https://analytics-stream:30031/udc/
[INFO] [2021-07-12 03:42:28.793] Service not reachable
[INFO] [2021-07-12 03:42:28.797] analytics-stream
[INFO] [2021-07-12 03:42:28.797] Attempt to create connection with https://app:30037/site/
[INFO] [2021-07-12 03:42:28.802] Service not reachable
[INFO] [2021-07-12 03:42:28.803] app
[INFO] [2021-07-12 03:42:28.803] Attempt to create connection with https://flow-collector:30041/as/
[INFO] [2021-07-12 03:42:28.804] Service not reachable
[INFO] [2021-07-12 03:42:28.807] flow-collector
[INFO] [2021-07-12 03:42:28.808] Attempt to create connection with https://flow-analytics:30045/aggregation/
[INFO] [2021-07-12 03:42:28.815] Service not reachable
[INFO] [2021-07-12 03:42:28.815] flow-analytics
[INFO] [2021-07-12 03:42:28.816] Attempt to create connection with https://inventory:30017/resource/
[INFO] [2021-07-12 03:42:28.817] Service not reachable
[INFO] [2021-07-12 03:42:28.817] inventory
[INFO] [2021-07-12 03:42:28.818] Attempt to create connection with https://flow-collector:30041/nbar/
[INFO] [2021-07-12 03:42:28.818] Service not reachable
[INFO] [2021-07-12 03:42:28.818] flow-collector
[INFO] [2021-07-12 03:42:28.821] Attempt to create connection with https://analytics-batch:30029/sbh/
[INFO] [2021-07-12 03:42:28.822] Service not reachable
[INFO] [2021-07-12 03:42:28.822] analytics-batch
[INFO] [2021-07-12 03:42:28.823] Attempt to create connection with https://flow-collector:30041/ipgroup/
[INFO] [2021-07-12 03:42:28.823] Service not reachable
[INFO] [2021-07-12 03:42:28.825] flow-collector
[INFO] [2021-07-12 03:42:28.825] Attempt to create connection with https://snmp-discovery:30019/profile/
[INFO] [2021-07-12 03:42:28.827] Service not reachable
[INFO] [2021-07-12 03:42:28.828] snmp-discovery
[INFO] [2021-07-12 03:42:28.834] Attempt to create connection with https://threshold:30033/threshold/
[INFO] [2021-07-12 03:42:28.835] Service not reachable
[INFO] [2021-07-12 03:42:28.836] threshold
[INFO] [2021-07-12 03:42:28.841] Attempt to create connection with https://threshold:30033/schedule/
[INFO] [2021-07-12 03:42:28.857] Service not reachable
[INFO] [2021-07-12 03:42:28.861] threshold
[INFO] [2021-07-12 03:42:28.861] Attempt to create connection with https://snmp-discovery:30019/credential/
[INFO] [2021-07-12 03:42:28.862] Service not reachable
[INFO] [2021-07-12 03:42:28.863] snmp-discovery
[INFO] [2021-07-12 03:42:28.864] Attempt to create connection with https://analytics-stream:30031/sa/
[INFO] [2021-07-12 03:42:28.865] Service not reachable
[INFO] [2021-07-12 03:42:28.865] analytics-stream
[INFO] [2021-07-12 03:42:28.865] Attempt to create connection with https://flow-collector:30041/retention/
[INFO] [2021-07-12 03:42:28.865] Service not reachable
[INFO] [2021-07-12 03:42:28.867] flow-collector
[INFO] [2021-07-12 03:42:28.867] Attempt to create connection with https://threshold:30033/alarm/
[INFO] [2021-07-12 03:42:28.873] Service not reachable
[INFO] [2021-07-12 03:42:28.877] threshold
[INFO] [2021-07-12 03:42:28.880] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_en.properties
[INFO] [2021-07-12 03:42:28.894] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_en.properties
[INFO] [2021-07-12 03:42:28.912] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_cs.properties
[INFO] [2021-07-12 03:42:28.912] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_cs.properties
[INFO] [2021-07-12 03:42:28.912] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_de.properties
[INFO] [2021-07-12 03:42:28.913] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_de.properties
[INFO] [2021-07-12 03:42:28.913] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_es.properties
[INFO] [2021-07-12 03:42:28.913] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_es.properties
[INFO] [2021-07-12 03:42:28.913] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_fr.properties
[INFO] [2021-07-12 03:42:28.914] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_fr.properties
[INFO] [2021-07-12 03:42:28.914] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_hu.properties
[INFO] [2021-07-12 03:42:28.914] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_hu.properties
[INFO] [2021-07-12 03:42:28.914] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_it.properties
[INFO] [2021-07-12 03:42:28.915] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_it.properties
[INFO] [2021-07-12 03:42:28.915] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_ja.properties
[INFO] [2021-07-12 03:42:28.915] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_ja.properties
[INFO] [2021-07-12 03:42:28.915] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_ko.properties
[INFO] [2021-07-12 03:42:28.915] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_ko.properties
[INFO] [2021-07-12 03:42:28.915] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_pl.properties
[INFO] [2021-07-12 03:42:28.916] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_pl.properties
[INFO] [2021-07-12 03:42:28.916] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_pt-BR.properties
[INFO] [2021-07-12 03:42:28.916] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_pt-BR.properties
[INFO] [2021-07-12 03:42:28.916] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_ru.properties
[INFO] [2021-07-12 03:42:28.940] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_ru.properties
[INFO] [2021-07-12 03:42:28.940] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_zh-CN.properties
[INFO] [2021-07-12 03:42:28.942] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_zh-CN.properties
[INFO] [2021-07-12 03:42:28.942] /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/properties/accordionData_zh-TW.properties
[INFO] [2021-07-12 03:42:28.942] File moved to /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/dashboards/configui_properties/accordionData_zh-TW.properties
[INFO] [2021-07-12 03:42:29.097] jetty-9.2.28.v20190418
[WARN] [2021-07-12 03:42:33.646] [email protected]@3113a37{/dashboards,file:/home/ubuntu/.basecamp-servlet/work/web/dashboards/webapp/,STARTING}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/dashboards.war} has uncovered http methods for path: /connect/ksqlQuery
[WARN] [2021-07-12 03:42:33.647] [email protected]@3113a37{/dashboards,file:/home/ubuntu/.basecamp-servlet/work/web/dashboards/webapp/,STARTING}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/dashboards.war} has uncovered http methods for path: /*
[INFO] [2021-07-12 03:42:33.670] Application started. Resource initization and loading started.*
[INFO] [2021-07-12 03:42:33.670] Localization of queries and log messages Initialized.
[INFO] [2021-07-12 03:42:34.482] filesystem flag :true
[INFO] [2021-07-12 03:42:34.483] basePath :/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/
[INFO] [2021-07-12 03:42:34.483] GYMOF2009I: Schedule period for uploading JSON: 1
[INFO] [2021-07-12 03:42:34.483] GYMOF2010I: Source directory containing JSON: /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/json
[INFO] [2021-07-12 03:42:34.484] GYMOF2020I: Checking directory /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/schema/schema.json for schema
[INFO] [2021-07-12 03:42:34.484] GYMOF2021I: Checking directory /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/schema/schemaImportTemplate.json for schemaImportTemplate
[INFO] [2021-07-12 03:42:34.486] Polling is enabled.
[INFO] [2021-07-12 03:42:34.486] GYMOF2011I: JSON and properties file polling directory: /home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/json
[INFO] [2021-07-12 03:42:34.616] GYMOF2005I: In Application init method
[INFO] [2021-07-12 03:42:34.616] Application associated resource loading started
[INFO] [2021-07-12 03:42:34.688] Con key : NPI_DS
[INFO] [2021-07-12 03:42:34.688] connectorobj : com.persistent.oed.container.factory.resource.RestFullConf@3249a1ce
[INFO] [2021-07-12 03:42:34.688] Con key : CONFIGUI_DS
[INFO] [2021-07-12 03:42:34.688] connectorobj : com.persistent.oed.container.factory.resource.RestFullConf@4dd94a58
[INFO] [2021-07-12 03:42:34.688] Application associated resource loading completed
[INFO] [2021-07-12 03:42:34.688] Getting information of tenant.
[INFO] [2021-07-12 03:42:34.733] Tenant associated Resource loading started
[INFO] [2021-07-12 03:42:34.750] tenantId :default TenantSchema :t_default_engine
[INFO] [2021-07-12 03:42:34.791] Resource Key : default Resource Value : jdbc/prd
[INFO] [2021-07-12 03:42:34.791] GYMOF0112D: Expecting resource jdbc/prd Servlet container Connection pool for key default in DBNAMEJNDIMAPPING table
[INFO] [2021-07-12 03:42:34.791] Resource Key : NPI_DS Resource Value : oed/npi
[INFO] [2021-07-12 03:42:34.791] GYMOF0112D: Expecting resource oed/npi Servlet container Connection pool for key NPI_DS in DBNAMEJNDIMAPPING table
[INFO] [2021-07-12 03:42:34.791] GYMOF0001D: Loading Database Configuration File ‘dbNameJndiMapping.properties’
[INFO] [2021-07-12 03:42:34.793] lookup Name :java:comp/env/jdbc/prd
[INFO] [2021-07-12 03:42:34.793] resource is created.
[INFO] [2021-07-12 03:42:34.793] resource is loaded for key :default
[ERROR] [2021-07-12 03:42:34.794] GYMOF00099: No Connection found for NPI_DS in Application Server Connection Pool.
[INFO] [2021-07-12 03:42:34.794] Tenant associated resource loading completed
[INFO] [2021-07-12 03:42:34.794] Application started. Resource initization and loading Completed.*
[INFO] [2021-07-12 03:42:34.794] *********************************************************************************
[INFO] [2021-07-12 03:42:34.948] The system is using the com.persistent.engine.connector.provider.EngineConnRESTProvider JAX-RS application class that is named in the javax.ws.rs.Application init-param initialization parameter.
log4j:WARN No appenders could be found for logger (engineconn).
log4j:WARN Please initialize the log4j system properly.
[INFO] [2021-07-12 03:42:35.232] The following JAX-RS application has been processed: com.persistent.engine.connector.provider.EngineConnRESTProvider
[INFO] [2021-07-12 03:42:35.245] The server has registered the JAX-RS resource class com.persistent.engine.connector.core.processor.EngineConnConfigServiceRestProcessor with @Path(/configservice).
[INFO] [2021-07-12 03:42:35.245] The server has registered the JAX-RS resource class com.persistent.engine.connector.core.processor.EngineConnDataServiceRestProcessor with @Path(/dataservice).
[INFO] [2021-07-12 03:42:35.246] There are no custom JAX-RS providers defined in the application.
[INFO] [2021-07-12 03:42:35.553] Started o.e.j.w.WebAppContext@3113a37{/dashboards,file:/home/ubuntu/.basecamp-servlet/work/web/dashboards/webapp/,AVAILABLE}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/dashboards.war}
[INFO] [2021-07-12 03:42:35.592] Started o.e.j.w.WebAppContext@213e3629{/externalFiles,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/externalFiles/,AVAILABLE}
[INFO] [2021-07-12 03:42:35.640] Started o.e.j.w.WebAppContext@4e9658b5{/config-ui-dashboard,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/,AVAILABLE}
[WARN] [2021-07-12 03:42:36.528] [email protected]@2a7b6f69{/designertool,file:/home/ubuntu/.basecamp-servlet/work/web/designertool/webapp/,STARTING}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/designertool.war} has uncovered http methods for path: /connect/ksqlQuery
[WARN] [2021-07-12 03:42:36.529] [email protected]@2a7b6f69{/designertool,file:/home/ubuntu/.basecamp-servlet/work/web/designertool/webapp/,STARTING}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/designertool.war} has uncovered http methods for path: /*
[INFO] [2021-07-12 03:42:36.799] Started o.e.j.w.WebAppContext@2a7b6f69{/designertool,file:/home/ubuntu/.basecamp-servlet/work/web/designertool/webapp/,AVAILABLE}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/designertool.war}
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/ubuntu/.basecamp-servlet/work/web/scheduler/webapp/WEB-INF/lib/slf4j-simple-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/ubuntu/.basecamp-servlet/work/web/scheduler/webapp/WEB-INF/lib/logback-classic-1.1.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%253A8082/artifactory/mvn-releases/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See SLF4J Error Codes for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.SimpleLoggerFactory]
[main] INFO com.oed.scheduler.servlet.ReportSchedularListner - contextInitialized…
[main] INFO com.oed.scheduler.database.ConnectionPoolManager - Connection Established Successfull and the DATABASE NAME IS:PostgreSQL
[main] INFO com.oed.scheduler.servlet.ReportSchedularListner - DB Connection Established Successfully…
[WARN] [2021-07-12 03:42:44.542] FAILED o.e.j.w.WebAppContext@20312893{/scheduler,file:/home/ubuntu/.basecamp-servlet/work/web/scheduler/webapp/,STARTING}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/scheduler.war}: java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
at scala.util.parsing.json.Lexer.(Lexer.scala:81)
at scala.util.parsing.json.Parser.(Parser.scala:121)
at scala.util.parsing.json.JSON$.(JSON.scala:32)
at scala.util.parsing.json.JSON$.(JSON.scala)
at com.oed.scheduler.servlet.ReportSchedularListner.contextInitialized(ReportSchedularListner.scala:31)
at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized(ContextHandler.java:800)
at org.eclipse.jetty.servlet.ServletContextHandler.callContextInitialized(ServletContextHandler.java:444)
at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:791)
at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:294)
at org.eclipse.jetty.webapp.WebAppContext.startWebapp(WebAppContext.java:1349)
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1342)
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:741)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:505)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:163)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.server.Server.start(Server.java:387)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.Server.doStart(Server.java:354)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at basecamp.lib.servlet.ServletServer.start(ServletServer.scala:99)
at basecamp.dashboard.DashboardService.$anonfun$start$1(DashboardService.scala:134)
at basecamp.dashboard.DashboardService.$anonfun$start$1$adapted(DashboardService.scala:69)
at basecamp.lib.io.File.$anonfun$lock$3(File.scala:52)
at basecamp.lib.io.File.$anonfun$lock$3$adapted(File.scala:52)
at basecamp.lib.io.FileLockImpl.lock(File.scala:93)
at basecamp.lib.io.File.lock(File.scala:52)
at basecamp.dashboard.DashboardService.start(DashboardService.scala:136)
at basecamp.dashboard.DashboardService$.start(DashboardService.scala:244)
at basecamp.dashboard.DashboardService$.main(DashboardService.scala:240)
at basecamp.dashboard.DashboardService.main(DashboardService.scala)
[WARN] [2021-07-12 03:42:44.545] FAILED org.eclipse.jetty.server.handler.ContextHandlerCollection@5c9ac4cc[o.e.j.w.WebAppContext@3113a37{/dashboards,file:/home/ubuntu/.basecamp-servlet/work/web/dashboards/webapp/,AVAILABLE}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/dashboards.war}, o.e.j.w.WebAppContext@213e3629{/externalFiles,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/externalFiles/,AVAILABLE}, o.e.j.w.WebAppContext@4e9658b5{/config-ui-dashboard,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/config-ui-dashboard/,AVAILABLE}, o.e.j.w.WebAppContext@2a7b6f69{/designertool,file:/home/ubuntu/.basecamp-servlet/work/web/designertool/webapp/,AVAILABLE}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/designertool.war}, o.e.j.w.WebAppContext@20312893{/scheduler,file:/home/ubuntu/.basecamp-servlet/work/web/scheduler/webapp/,STARTING}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/oed/scheduler.war}, o.e.j.w.WebAppContext@70eecdc2{/configui,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/,null}, o.e.j.s.ServletContextHandler@c41709a{/integration/keystore,null,null}, o.e.j.s.ServletContextHandler@7db0565c{/,null,null}, o.e.j.s.ServletContextHandler@54ec8cc9{/rest,null,null}, o.e.j.s.ServletContextHandler@52eacb4b{/timeseries,null,null}, o.e.j.s.ServletContextHandler@5528a42c{/inventory,null,null}, o.e.j.s.ServletContextHandler@2a551a63{/analytics-batch,null,null}, o.e.j.s.ServletContextHandler@1a6f5124{/analytics-stream,null,null}, o.e.j.s.ServletContextHandler@1edb61b1{/snmp-discovery,null,null}, o.e.j.s.ServletContextHandler@ec2bf82{/app,null,null}, o.e.j.s.ServletContextHandler@cc62a3b{/threshold,null,null}, o.e.j.s.ServletContextHandler@6cc0bcf6{/flow-collector,null,null}, o.e.j.s.ServletContextHandler@29539e36{/dns-collector,null,null}, o.e.j.s.ServletContextHandler@32f61a31{/flow-analytics,null,null}, o.e.j.w.WebAppContext@f5c79a6{/Blaze,null,null}{/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/blaze/Blaze.war}, o.e.j.s.ServletContextHandler@669253b7{/insight,null,null}, o.e.j.w.WebAppContext@5305c37d{/dashboardMetadata,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/,null}, o.e.j.w.WebAppContext@51a06cbe{/tncp,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/,null}, o.e.j.w.WebAppContext@3dddbe65{/metricThresholdViolation,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/,null}, o.e.j.w.WebAppContext@49a64d82{/drillDownFlowDashboard,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/,null}, o.e.j.s.h.ContextHandler@344561e0{/dashboards/ui,null,null}, o.e.j.w.WebAppContext@66d23e4a{/dashboards/ui,file:/home/ubuntu/git/basecamp-core/basecamp-dashboard/resources/,null}, o.e.j.s.ServletContextHandler@36ac8a63{/control,null,null}]: java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
at scala.util.parsing.json.Lexer.(Lexer.scala:81)
at scala.util.parsing.json.Parser.(Parser.scala:121)
at scala.util.parsing.json.JSON$.(JSON.scala:32)
at scala.util.parsing.json.JSON$.(JSON.scala)
at com.oed.scheduler.servlet.ReportSchedularListner.contextInitialized(ReportSchedularListner.scala:31)
at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized(ContextHandler.java:800)
at org.eclipse.jetty.servlet.ServletContextHandler.callContextInitialized(ServletContextHandler.java:444)
at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:791)
at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:294)
at org.eclipse.jetty.webapp.WebAppContext.startWebapp(WebAppContext.java:1349)
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1342)
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:741)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:505)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:163)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.server.Server.start(Server.java:387)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.Server.doStart(Server.java:354)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at basecamp.lib.servlet.ServletServer.start(ServletServer.scala:99)
at basecamp.dashboard.DashboardService.$anonfun$start$1(DashboardService.scala:134)
at basecamp.dashboard.DashboardService.$anonfun$start$1$adapted(DashboardService.scala:69)
at basecamp.lib.io.File.$anonfun$lock$3(File.scala:52)
at basecamp.lib.io.File.$anonfun$lock$3$adapted(File.scala:52)
at basecamp.lib.io.FileLockImpl.lock(File.scala:93)
at basecamp.lib.io.File.lock(File.scala:52)
at basecamp.dashboard.DashboardService.start(DashboardService.scala:136)
at basecamp.dashboard.DashboardService$.start(DashboardService.scala:244)
at basecamp.dashboard.DashboardService$.main(DashboardService.scala:240)
at basecamp.dashboard.DashboardService.main(DashboardService.scala)
[INFO] [2021-07-12 03:42:44.564] Started ServerConnector@38c9cdc0{HTTP/1.1}{0.0.0.0:31080}
[INFO] [2021-07-12 03:42:44.588] Started ServerConnector@14ac77b9{SSL-http/1.1}{0.0.0.0:31443}
[WARN] [2021-07-12 03:42:44.588] FAILED org.eclipse.jetty.server.Server@6ffab045: java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
at scala.util.parsing.json.Lexer.(Lexer.scala:81)
at scala.util.parsing.json.Parser.(Parser.scala:121)
at scala.util.parsing.json.JSON$.(JSON.scala:32)
at scala.util.parsing.json.JSON$.(JSON.scala)
at com.oed.scheduler.servlet.ReportSchedularListner.contextInitialized(ReportSchedularListner.scala:31)
at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized(ContextHandler.java:800)
at org.eclipse.jetty.servlet.ServletContextHandler.callContextInitialized(ServletContextHandler.java:444)
at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:791)
at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:294)
at org.eclipse.jetty.webapp.WebAppContext.startWebapp(WebAppContext.java:1349)
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1342)
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:741)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:505)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:163)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.server.Server.start(Server.java:387)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.Server.doStart(Server.java:354)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at basecamp.lib.servlet.ServletServer.start(ServletServer.scala:99)
at basecamp.dashboard.DashboardService.$anonfun$start$1(DashboardService.scala:134)
at basecamp.dashboard.DashboardService.$anonfun$start$1$adapted(DashboardService.scala:69)
at basecamp.lib.io.File.$anonfun$lock$3(File.scala:52)
at basecamp.lib.io.File.$anonfun$lock$3$adapted(File.scala:52)
at basecamp.lib.io.FileLockImpl.lock(File.scala:93)
at basecamp.lib.io.File.lock(File.scala:52)
at basecamp.dashboard.DashboardService.start(DashboardService.scala:136)
at basecamp.dashboard.DashboardService$.start(DashboardService.scala:244)
at basecamp.dashboard.DashboardService$.main(DashboardService.scala:240)
at basecamp.dashboard.DashboardService.main(DashboardService.scala)
Exception in thread “main” java.lang.NoSuchMethodError: scala.Predef$.charArrayOps([C)Lscala/collection/mutable/ArrayOps;
at scala.util.parsing.json.Lexer.(Lexer.scala:81)
at scala.util.parsing.json.Parser.(Parser.scala:121)
at scala.util.parsing.json.JSON$.(JSON.scala:32)
at scala.util.parsing.json.JSON$.(JSON.scala)
at com.oed.scheduler.servlet.ReportSchedularListner.contextInitialized(ReportSchedularListner.scala:31)
at org.eclipse.jetty.server.handler.ContextHandler.callContextInitialized(ContextHandler.java:800)
at org.eclipse.jetty.servlet.ServletContextHandler.callContextInitialized(ServletContextHandler.java:444)
at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:791)
at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:294)
at org.eclipse.jetty.webapp.WebAppContext.startWebapp(WebAppContext.java:1349)
at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1342)
at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:741)
at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:505)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.doStart(ContextHandlerCollection.java:163)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at org.eclipse.jetty.util.component.ContainerLifeCycle.start(ContainerLifeCycle.java:132)
at org.eclipse.jetty.server.Server.start(Server.java:387)
at org.eclipse.jetty.util.component.ContainerLifeCycle.doStart(ContainerLifeCycle.java:114)
at org.eclipse.jetty.server.handler.AbstractHandler.doStart(AbstractHandler.java:61)
at org.eclipse.jetty.server.Server.doStart(Server.java:354)
at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
at basecamp.lib.servlet.ServletServer.start(ServletServer.scala:99)
at basecamp.dashboard.DashboardService.$anonfun$start$1(DashboardService.scala:134)
at basecamp.dashboard.DashboardService.$anonfun$start$1$adapted(DashboardService.scala:69)
at basecamp.lib.io.File.$anonfun$lock$3(File.scala:52)
at basecamp.lib.io.File.$anonfun$lock$3$adapted(File.scala:52)
at basecamp.lib.io.FileLockImpl.lock(File.scala:93)
at basecamp.lib.io.File.lock(File.scala:52)
at basecamp.dashboard.DashboardService.start(DashboardService.scala:136)
at basecamp.dashboard.DashboardService$.start(DashboardService.scala:244)
at basecamp.dashboard.DashboardService$.main(DashboardService.scala:240)
at basecamp.dashboard.DashboardService.main(DashboardService.scala)
show dependencyClasspath
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-lib/target/classes)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-common/target/classes)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/target/classes)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/cli.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/log4j-1.2.13.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/IBMESSClientAuthn.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/stax-api-1.0.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/dashboardpolling.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/mail-1.4.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/jaxen-1.1-beta-12.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/axiom-api-1.2.2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/activation-1.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/serializer.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/JSON4J.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/IBMESSAuthnAudit.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/commons-httpclient-3.0-rc2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/wstx-asl-3.0.0.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/axiom-impl-1.2.2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/ibmstsclient.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/wsdl4j-1.5.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/dom4j-1.6.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/xmlsec-1.4.0.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/RestFullConf.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/IBMESSClientExamp.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/axis-1.4.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/jaxrpc.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/commons-discovery-0.2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/saaj.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/IBMESSClientRP.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-dashboard/lib/xalan.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-lib/lib/IBMESSClientAuthn.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-lib/lib/IBMESSAuthnAudit.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-lib/lib/ibmstsclient.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-lib/lib/IBMESSClientExamp.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-lib/lib/IBMESSClientRP.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-common/lib/akka-io-sctp_2.12-0.8.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/cli.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/IBMESSClientAuthn.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/stax-api-1.0.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/mail-1.4.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/jaxen-1.1-beta-12.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/axiom-api-1.2.2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/activation-1.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/serializer.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/JSON4J.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/IBMESSAuthnAudit.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/commons-httpclient-3.0-rc2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/wstx-asl-3.0.0.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/axiom-impl-1.2.2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/ibmstsclient.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/wsdl4j-1.5.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/dom4j-1.6.1.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/xmlsec-1.4.0.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/IBMESSClientExamp.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/axis-1.4.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/jaxrpc.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/commons-discovery-0.2.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/saaj.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/IBMESSClientRP.jar)
[info] * Attributed(/home/ubuntu/git/basecamp-core/basecamp-platform/lib/xalan.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-remote_2.12/2.5.31/akka-remote_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/apache-jstl/9.2.2.v20140723/apache-jstl-9.2.2.v20140723.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/scala-lang/scala-library/2.12.11/scala-library-2.12.11.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/101tec/zkclient/0.11/zkclient-0.11.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/ssl-config-core_2.12/0.3.8/ssl-config-core_2.12-0.3.8.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-webapp/9.2.28.v20190418/jetty-webapp-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/glassfish/web/javax.servlet.jsp/2.3.2/javax.servlet.jsp-2.3.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/javax/servlet/jsp/jstl/javax.servlet.jsp.jstl-api/1.2.1/javax.servlet.jsp.jstl-api-1.2.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-jmx/9.2.28.v20190418/jetty-jmx-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/curator/curator-client/4.1.0/curator-client-4.1.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/scalapenos/stamina-core_2.12/0.1.5/stamina-core_2.12-0.1.5.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/javax/servlet/jsp/javax.servlet.jsp-api/2.3.1/javax.servlet.jsp-api-2.3.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/scala-lang/scala-reflect/2.12.11/scala-reflect-2.12.11.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-lang/commons-lang/2.6/commons-lang-2.6.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/h2database/h2/1.4.196/h2-1.4.196.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/glassfish/javax.el/3.0.0/javax.el-3.0.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/orbit/org.eclipse.jdt.core/3.8.2.v20130121/org.eclipse.jdt.core-3.8.2.v20130121.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/io/aeron/aeron-driver/1.15.1/aeron-driver-1.15.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/websocket/websocket-api/9.2.28.v20190418/websocket-api-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/toolchain/jetty-schemas/3.1.M0/jetty-schemas-3.1.M0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/lz4/lz4-java/1.7.1/lz4-java-1.7.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/taglibs/taglibs-standard-impl/1.2.1/taglibs-standard-impl-1.2.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-deploy/9.2.28.v20190418/jetty-deploy-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/websocket/websocket-client/9.2.28.v20190418/websocket-client-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/scala-lang/modules/scala-collection-compat_2.12/2.1.2/scala-collection-compat_2.12-2.1.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/io/aeron/aeron-client/1.15.1/aeron-client-1.15.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/derby/derbytools/10.14.2.0/derbytools-10.14.2.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-annotations/9.2.28.v20190418/jetty-annotations-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-http_2.12/10.0.2/akka-http_2.12-10.0.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-jndi/9.2.28.v20190418/jetty-jndi-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/xerial/snappy/snappy-java/1.1.7.3/snappy-java-1.1.7.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/thoughtworks/paranamer/paranamer/2.3/paranamer-2.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/jsmiparser/jsmiparser-util/0.14/jsmiparser-util-0.14.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-logging/commons-logging/1.2/commons-logging-1.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/taglibs/taglibs-standard-spec/1.2.1/taglibs-standard-spec-1.2.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/curator/curator-framework/4.1.0/curator-framework-4.1.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/kafka/kafka-clients/2.5.0/kafka-clients-2.5.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/slf4j/jul-to-slf4j/1.7.21/jul-to-slf4j-1.7.21.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-client/9.2.28.v20190418/jetty-client-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.2.28.v20190418/javax-websocket-client-impl-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-plus/9.2.28.v20190418/jetty-plus-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-alpn-server/9.2.28.v20190418/jetty-alpn-server-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-http/9.2.28.v20190418/jetty-http-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/kafka/kafka_2.12/2.5.0/kafka_2.12-2.5.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/jsmiparser/jsmiparser-api/0.14/jsmiparser-api-0.14.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/log4j/log4j/1.2.14/log4j-1.2.14.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/io/netty/netty/3.10.6.Final/netty-3.10.6.Final.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-servlets/9.2.28.v20190418/jetty-servlets-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-codec/commons-codec/1.10/commons-codec-1.10.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/avro/avro/1.7.7/avro-1.7.7.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-alpn-client/9.2.28.v20190418/jetty-alpn-client-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-jaas/9.2.28.v20190418/jetty-jaas-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-stream-kafka_2.12/2.0.3/akka-stream-kafka_2.12-2.0.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/zookeeper/zookeeper/3.5.7/zookeeper-3.5.7.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/zookeeper/zookeeper-jute/3.6.1/zookeeper-jute-3.6.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/config/1.3.3/config-1.3.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/scalapenos/stamina-json_2.12/0.1.5/stamina-json_2.12-0.1.5.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/glassfish/web/javax.servlet.jsp.jstl/1.2.2/javax.servlet.jsp.jstl-1.2.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/jsoniter/jsoniter/0.9.22/jsoniter-0.9.22.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/snmp4j/snmp4j/2.5.0/snmp4j-2.5.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-actor_2.12/2.5.31/akka-actor_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/javax/el/javax.el-api/3.0.0/javax.el-api-3.0.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-stream_2.12/2.5.31/akka-stream_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-jsp/9.2.28.v20190418/jetty-jsp-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/commons/commons-compress/1.4.1/commons-compress-1.4.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-parsing_2.12/10.0.2/akka-parsing_2.12-10.0.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-cluster_2.12/2.5.31/akka-cluster_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/parboiled/parboiled_2.12/2.2.0/parboiled_2.12-2.2.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/esotericsoftware/kryo/4.0.0/kryo-4.0.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/scala-lang/modules/scala-java8-compat_2.12/0.8.0/scala-java8-compat_2.12-0.8.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/tukaani/xz/1.0/xz-1.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-security/9.2.28.v20190418/jetty-security-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-cluster-tools_2.12/2.5.31/akka-cluster-tools_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/websocket/websocket-common/9.2.28.v20190418/websocket-common-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/curator/curator-recipes/4.1.0/curator-recipes-4.1.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-util/9.2.28.v20190418/jetty-util-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/apache/derby/derby/10.14.2.0/derby-10.14.2.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/scala-lang/modules/scala-xml_2.12/1.0.6/scala-xml_2.12-1.0.6.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/github/romix/akka/akka-kryo-serialization_2.12/0.5.1/akka-kryo-serialization_2.12-0.5.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-io/9.2.28.v20190418/jetty-io-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-jaspi/9.2.28.v20190418/jetty-jaspi-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/objenesis/objenesis/2.2/objenesis-2.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-rewrite/9.2.28.v20190418/jetty-rewrite-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-coordination_2.12/2.5.31/akka-coordination_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/antlr/antlr/2.7.7/antlr-2.7.7.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-slf4j_2.12/2.5.31/akka-slf4j_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/orbit/javax.servlet.jsp.jstl/1.2.0.v201105211821/javax.servlet.jsp.jstl-1.2.0.v201105211821.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/commons-io/commons-io/2.4/commons-io-2.4.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/io/spray/spray-json_2.12/1.3.2/spray-json_2.12-1.3.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-http-core_2.12/10.0.2/akka-http-core_2.12-10.0.2.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-continuation/9.2.28.v20190418/jetty-continuation-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-proxy/9.2.28.v20190418/jetty-proxy-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/postgresql/postgresql/42.2.5/postgresql-42.2.5.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/agrona/agrona/0.9.31/agrona-0.9.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-protobuf_2.12/2.5.31/akka-protobuf_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-server/9.2.28.v20190418/jetty-server-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-quickstart/9.2.28.v20190418/jetty-quickstart-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-servlet/9.2.28.v20190418/jetty-servlet-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/jetty-xml/9.2.28.v20190418/jetty-xml-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/toolchain/jetty-jsp-jdt/2.3.3/jetty-jsp-jdt-2.3.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/esotericsoftware/reflectasm/1.11.3/reflectasm-1.11.3.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/websocket/websocket-server/9.2.28.v20190418/websocket-server-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/google/guava/guava/25.0-jre/guava-25.0-jre.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/typesafe/akka/akka-persistence_2.12/2.5.31/akka-persistence_2.12-2.5.31.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/net/jpountz/lz4/lz4/1.3.0/lz4-1.3.0.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.2.28.v20190418/javax-websocket-server-impl-9.2.28.v20190418.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/com/github/luben/zstd-jni/1.4.4-7/zstd-jni-1.4.4-7.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/io/kamon/sigar-loader/1.6.6-rev002/sigar-loader-1.6.6-rev002.jar)
[info] * Attributed(/home/ubuntu/.coursier/cache/v1/http/tnpmartifactory%3A8082/artifactory/mvn-releases/org/eclipse/jetty/websocket/websocket-servlet/9.2.28.v20190418/websocket-servlet-9.2.28.v20190418.jar)
[success] Total time: 1 s, completed Jul 14, 2021 6:50:14 AM
There is no any jar with version _2.11 in cache or in project. Also I have tried to run project using packExpandedClasspath := true as well as packExpandedClasspath := false, but still issue is there.
Running dashboard from eclipse or from project sbt its giving same error. Project build path contains Scala library with version 2.12 only.
Maybe you could could enable extended logging to include the packaging information. E.g. for logback classic: Chapter 6: Layouts
That way you could see where those classes are coming from.
com.oed.scheduler.servlet.ReportSchedularListner.contextInitialized(ReportSchedularListner.scala:31)
Where does that class come from? Is this build in your project or did you build it externally somehow?