You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[error] /lagom-java-chirper-example-master/chirp-impl/src/main/java/sample/chirper/chirp/impl/ChirpRepositoryImpl.java:119: not found: type ReadSideHandler
[error] public ReadSideHandler buildHandler() {
The current workaround is to go to ChirpRepositoryImpl.java and add
this is so confusing/insane. how does generating build info of name, version, scalaVersion and sbtVersion affect generating docs for src/main/java/sample/chirper/chirp/impl/ChirpRepositoryImpl.java??
When you specify a type through inheritance without an explicit import then you get a compiler error in the
doc
task.This is reproducible in the Lagom Java Chirper Example. Update the
project/plugins.sbt
by adding the following to thedefaultPlugins
Seq
:Then update the
build.sbt
'schirplmpl
to start like this:Now when you run
sbt doc
you get the following:The current workaround is to go to
ChirpRepositoryImpl.java
and addThis is needed because
ReadSideHandler
is only available due to the extension ofReadSideProcessor
, but is not working once you addsbt-buildinfo
The text was updated successfully, but these errors were encountered: