scala - Why does Typesafe Activator not set up documentation for dependencies in IDEA? -
i've noticed if create new intellij idea project sbt , gen-idea
set project structure have class jars, source jars , javadocs jars.
however if use typesafe activator template , run either gen-idea
within web ui or manually via sbt, sets class jars.
is downloading , configuring documentation libraries needs defined in build.sbt
or local misconfiguration?
i don't know sbt-idea plugin, answer "is downloading , configuring documentation libraries needs defined in build.sbt or local misconfiguration?" yes described in official documentation of sbt in library management under download sources:
to have sbt download dependency’s sources without using ide plugin, add withsources()
dependency definition. api jars, add withjavadoc()
. example:
librarydependencies += "org.apache.felix" % "org.apache.felix.framework" % "1.8.0" withsources() withjavadoc()
Comments
Post a Comment