Hello,
I have been experimenting with 2.0 and really like it so far. One
requirement of many is to export various items to a PDF. I am
struggling a bit trying to wrap my head around integrating this into
my application.
Here is my build.scala file:
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "MyApp"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
// Add your project dependencies here,
"
http://maven.apache.org/settings.html#Repositories" % "iText"
% "5.1.3"
)
val main = PlayProject(appName, appVersion, appDependencies,
mainLang = JAVA).settings(
// Add your own project settings here
)
}
I get a build error about not finding the dependency. It appears it
doesn't like the URL. Any tutorials on how to use a PDF component or
at the very least on how to add modules to the build file.
Thanks,
Todd