1
vote
0answers
28 views

Play 2.1.1 building dependencies

I'm new to Play framework and working on a Java webapp using it. I understand to build play 2.1.1 applications, we need to use SBT. Questions: Is this the default build system for Play? Don't we ...
0
votes
0answers
19 views

Play 2 - Tests NOT run when annotated with PowerMockRunner

We are facing a weird issue with Play framework and PowerMockRunner combination. As you can see the below example is a dummy one to simulate the issue. JUnit Test Using PowerMockRunner package ...
2
votes
3answers
105 views
+150

Scala Play 2.0. Compilation error: IO error while decoding

I downloaded multi-module Scala project from GitHub, and one of the module is Play 2.0 module. So I can run whole application using SBT's run command on each module, and all works fine. But when I add ...
5
votes
2answers
64 views

How to determine when Play! 2 must recompile all files?

When I edit a scala file in my Play 2 app, sometimes only a few files are recompiled, but often the entire codebase must be recompiled: [info] Compiling 1 Scala source to ...
0
votes
1answer
55 views

Play 2.1 / taking in account a javaagent while running tests

My goal is to launch my integration tests contained within my Play app. To do so, I used to launch them through Intellij. Those tests needs Spring aspectJ weaving, thus I precised in my Intellij test ...
2
votes
1answer
70 views

Compile tests with SBT and package them to be run later

Im working with SBT and Play! Framework. Currently we have a commit stage in our pipeline where we publish to artifactory our binaries. The binaries are generated with the dist task. The pipeline then ...
0
votes
1answer
43 views

How to stop play 2.0.4 throwing java.lang.NoSuchMethodError: org.sbtidea.SbtIdeaPlugin

When running the play console (2.0.4) it returns: [info] Loading global plugins from /home/matt/.sbt/plugins [info] Loading project definition from /home/matt/src/app/project [error] ...
3
votes
1answer
303 views

play framework migrate to 2.1.1 gives me a headache

So I wanted to start working on a play framework project of mine I abandoned 5 months ago, the project was still in version 2.0.4 and seeing 2.1.1 was the latest version I did this tutorial to update ...
-1
votes
0answers
40 views

how to use subproject for main project settings [closed]

I have use subproject for add assets compiler for Play project. I want to get something like this object ApplicationBuild extends Build { val appName = "Kitchen" val appVersion = ...
0
votes
0answers
57 views

sbt cannot resolve ensime-sbt-cmd in a Play2-Scala project

I'm trying to configure Sublime Text 2 to better support working with Scala and Play! 2 Framework by following instructions from ...
1
vote
0answers
42 views

Getting a Play/SBT app to depend on a Maven POM

My Play 2 application is a subproject of a larger Maven application. The Play 2 app has dependencies in its parent - it gets its data access from it. Therefore, I want the Build of the application to ...
0
votes
0answers
48 views

How to add my sources jar to stage / dist in play framework

How can I patch play stage / play dist tasks to add myproj-v1-sources.jar to the output? I already know how to add the sources to the binary JAR itself (including sources in binary jar) But I want ...
2
votes
1answer
80 views

how to share modules in play framework 2

I am trying to build 2 website which use the same core functionality using play framework 2 (JAVA). the challenge is how to set up the project so the core part can be shared between the 2 projects. In ...
3
votes
1answer
220 views

Play Framework 2.1.1 not resolving dependencies

I am trying to run play dependencies on my project and it is failing to find my dependencies. My situation is unique in that I am running on an internal LAN with absolutely no internet access so ...
0
votes
1answer
76 views

Unable to load dependency in Play framework project

I am trying to use a library called REST Assured with the Play Framework. The documentation - https://code.google.com/p/rest-assured/wiki/GettingStarted - gives the following artifact for Maven - ...
1
vote
1answer
68 views

How to add authbind to my Play Framework start script (generated with “play stage”)?

I'm using authbind to allow my Play Framework app to bind to port 80 when run as a non-root user. My target/start script needs to look like this for it to work: #!/usr/bin/env sh exec authbind ...
0
votes
1answer
116 views

Heroku Play framework 2 sbt dependencies cache

I managed to add some dependencies (via the sbt dependency manager in play framework) that seem to be in conflict with other libraries I use. However when i removed them from the sbt dependency ...
0
votes
0answers
49 views

Splitting layers within a Play 2 application

Is it a good practice to split the default Play architecture into some sbt subprojects (as simple libraries). Indeed, I would find layers more visible (cleanly separated) and each one containing its ...
1
vote
1answer
200 views

Intellij Play make project error: not found: object Keys

IntelliJ IDEA 12.1, Play 2.0.4 I got this error running Build...Make Project: Scala: not found: object Keys import Keys._ This is an existing Play 2.0.4 project which I typically run from Eclipse ...
0
votes
1answer
39 views

How to enable sbt-scalabuff in a Play2 application?

I'm trying to use sbt-scalabuff to generate scala case class from proto file. I have added the plugin reference into plugins.sbt file of the Play project, added runtime dependencies too. If I do not ...
11
votes
3answers
336 views

Using multiple projects in Eclipse with Play framework 2.1.x

I have an existing project in Eclipse (let's call it "NotPlayProj") which has a lot of java code still under development. I made a new eclipse project using play 2.1.0 (let's call it "PlayProj"). My ...
2
votes
2answers
135 views

Play Framework 2.0. Upgrade bonecp

There is a project in Scala for Play 2.0. I've met a known bug with bonecp 0.7.1 database connections and want to upgrade this library to version 0.8.0. In file /project/plugins.sbt I've added the ...
0
votes
0answers
51 views

Use dispatch 0.9.5 in a Play 2.0 project

I have a Play 2.0 project (to be upgraded to 2.1 in the coming months, but not right now). It appears that Play automatically imports the previous version of dispatch (0.8.8). There are important ...
0
votes
1answer
151 views

Simple SBT Module in Play Project Causes Play to Crash for Unknown reason - play 2.1

https://github.com/jasongoodwin/play21-multimodule-demo has the code. I've recreated this problem on 3 different projects. I don't know what's up. once you put the aggregate and dependsOn in the ...
1
vote
0answers
136 views

Play 2.0 / SBT: Exclude certain transitive dependencies from some/all modules in Build.scala

I have a large legacy Java application with a Grails front end, and I'm working on replacing the Grails front end with a new one written in Play. Some of the (Maven) module dependencies in the legacy ...
3
votes
1answer
209 views

How to get more information about 'feature' flag warning?

When compiling an application with Play2, sometimes these kind of message appears on my terminal : [info] Compiling 1 Scala source to ~/target/scala-2.10/classes... [warn] there were 1 feature ...
1
vote
1answer
132 views

How do I specify a config file with sbt 0.12.2 for sbt test?

I have a Play! project with unit tests and I am trying to run tests on my staging environment using sbt. Before I upgraded to Play 2.1, when I was using Play 2.0.4 and sbt 0.11.3 I could do $ sbt ...
1
vote
1answer
232 views

Configuration files not in Play Framework 2.0 classpath when calculating code coverage using SCCT

I configured the Play Framework 2.0 to use SCCT for coverage, and can run scct using play scct:cover. However, my tests are unable to read any configuration files, because the configuration files ...
0
votes
0answers
60 views

IE CSS Selector limit with LESS Compilation & Play

For my project, I use the LESS compiler with play to generate CSS. Unfortunately, I'm starting to reach the CSS selector limit in internet explorer 6, 7, 8, and 9. These versions of IE allow only ...
0
votes
1answer
110 views

Publishing an sbt scala project to Artifactory with the env vars

What I have is this. I have defined in sbt my publish task which publishes to artifactory. Im running it in a Jenkins job as a shell build step. What I would like to do is to include all the ...
1
vote
1answer
154 views

What is the best way to create a new Play! 2.1 module?

As of Play 2.0, it appears that there is no longer a way of creating a module for an existing Play application, other than by creating a new Play application. Having searched around a bit, I came ...
1
vote
0answers
104 views

Play2 run via Sbt in dev mode on Osx Causes Out of Memory

I can't seem to find similar issues. On OSX, play2 bin seems to run okay but using sbt causes oom errors and scala files never complete compiling --- (Running the application from SBT, ...
1
vote
3answers
2k views

org.scala-sbt#sbt;0.11.3: not found when try to run existing project

i am new Java Play FrameWork i just read about it how to create a project how to run it. i am provided with a project when i goto in that project directory it is giving me error Getting ...
1
vote
1answer
273 views

Play 2.x application runs locally but fails with “Failed Downloads” on Heroku

When Running my application locally everything works fine. I even ran rm -r ~/.m2 To make sure I was redownloading everything. When I deploy to Heroku, however, Heroku reports that it's unable to ...
4
votes
0answers
117 views

Add a build step to a Play 2.0 (scala/sbt) project

I'm writing a Play 2.0 project in Scala, and I need to run a command-line tool before SBT starts deciding what to compile (the command will create/replace a .scala file in the project with one ...
0
votes
1answer
105 views

How can I set the javac compile version for Play Framework 2.0 to prevent “Unsupported major.minor version”?

A module I am using must have been compiled with Java 1.7, and I only have 1.6. If I want to for the module to be compiled for a specific version like 1.6, how can I set that in Play! Framework 2.0 ...
1
vote
1answer
53 views

Play 2.x: How to deploy scripts with distributable package

I'm creating a project in Play 2.1 and plan on distributing the project as a self-contained package using play dist. However, I need some extra scripts that are accessible to the server and can make ...
0
votes
0answers
77 views

How to split a Play app into several modules and make SecureSocial to be in one of them

I'm trying or organize my Play application into several modules... and I want SecureSocial to be in the auth module. Here is my project/Build.scala file: object ApplicationBuild extends Build { ...
1
vote
1answer
81 views

Play 2.0 / Scala: loading of module reference configuration broken?

I have started to extract some functionality into a separate Play module, together with some default configuration that I put into a file conf/reference.conf in the module as described for Typesafe's ...
1
vote
1answer
162 views

Heroku adding sbt start plugin prevents sbt plugin from resolving

When adding the sbt-start plugin to push to Heroku, via build.sbt with the following contents: resolvers += Classpaths.typesafeResolver addSbtPlugin("com.typesafe.startscript" % ...
2
votes
1answer
58 views

How to split a Play application into several parts

I'm trying to split my Play application into several modules as described in the Official Documentation... but I'm wondering if there is a complete example... or a more comprehensive tutorial. Any ...
3
votes
2answers
267 views

“502 Bad Gateway” with CloudBees Play2 Deployment (Java and Scala)

I followed the instructions described here to deploy my Play2 application to CloudBees: https://developer.cloudbees.com/bin/view/RUN/Playframework My Build.scala settings looks like this: val main = ...
3
votes
1answer
175 views

What SBT build setting can I use with the Play! 2 framework that will include specific resources from the source tree on the class path

I would like to add a setting to the build that will copy specific files from a location within src tree so that they are available on the class path in dev and production mode. I don’t want to put ...
1
vote
1answer
109 views

PlayFramework 2 and lib built with SBT in repo

I am trying to separate my application written with play framework 2 into small parts. So I've wrote small lib with sbt(1) as build system and publish it into local repository with publish-local ...
2
votes
1answer
117 views

Heroku sbt play console is SLOW

Hi I run play framework 2.1 RC1 (but this apply to sbt) on heroku with 1 web dyno. I frequently want to access scala REPL with the command heroku run sbt play console to make some operations. ...
3
votes
1answer
90 views

Play 2.0: How to add SBT build number to page footer

I would like to add build information to the footer of my Play! application (Play! 2.0.4 with Scala), similar as done here on stackoverflow. I'm new to SBT and just happy that most of the time ...
3
votes
1answer
260 views

Code coverage on Play! project

I have a Play! project where I would like to add some code coverage information. So far I have tried JaCoCo and scct. The former has the problem that it is based on bytecode, hence it seems to give ...
4
votes
1answer
102 views

Play! - Interacting with a webapp from the SBT console

I have a Play! 2 application where I have defined some jobs. These jobs interact with external web services and with the database, hence they need a running application to work. I would like to be ...
1
vote
1answer
149 views

Spring Data Neo4j - Unable to download 2.1.0-BUILD-SNAPSHOT

I'm using Play! 2 framework using SBT for dependencies. I want to retrieve 2.1.0-BUILD-SNAPSHOT version for Spring Data Neo4j My ApplicationBuild.scala (used by SBT) is the following: import sbt._ ...
5
votes
1answer
407 views

SBT - Failed to precise Play 2 app's project dependency

I'm creating a play 2 project using Scala as main language and so need a rest client implemented in Scala. Unfortunately, I can't easily use the known Java Jersey-Client. I found on github this ...

1 2 3