-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unresolved Yeoman.yeomanSettings in the 0.9.0 #93
Comments
Starting from 0.9.0, the plugin is an auto-plugin and its configuration is documented in the |
Thanks for the reply.My build.sbt was like this. lazy val root = (project in file(".")).enablePlugins(PlayJava, Yeoman, PlayEbean).settings( I removed the settings part and it is working.I think for the 0.9.0 auto plugin version, we do not need to call Please correct me if I am wrong... |
@nuwan1025 After the note, you need to check the sample code for the corresponding version |
When I run the application as an play app in my ide it worked fine. But when I try to package it with activator dist command, it doesnt package the ui part. Hence the grunt file is not read. I found the solution for that and it is working fine for me. |
@Shiti I was running into the same issue as @nuwan1025 and was able to fix it with his workaround |
I too faced the same issue as @nuwan1025 and was able to fix it with his workaround. This should be documented as I feel it's relevant to #86, #90, and #95 |
@nuwan1025 Thank you for this workaround! |
Hi,
I am upgrading play-java app to play 2.5. My build.sbt file cant find the yeomanSettings when configured as in documentation for 0.9.0 tuplejump.
val appSettings = Seq(version := appVersion, libraryDependencies ++= appDependencies) ++
Yeoman.yeomanSettings
But I got it working by changing it to
Yeoman.projectSettings
Is this a documentation mistake?
The text was updated successfully, but these errors were encountered: