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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -