docdown 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +38 -0
- data/README.md +126 -0
- data/Rakefile +16 -0
- data/bin/docdown +47 -0
- data/docdown.gemspec +28 -0
- data/lib/docdown.rb +37 -0
- data/lib/docdown/code_command.rb +37 -0
- data/lib/docdown/code_commands/bash.rb +23 -0
- data/lib/docdown/code_commands/no_such_command.rb +6 -0
- data/lib/docdown/code_commands/repl.rb +38 -0
- data/lib/docdown/code_commands/write.rb +27 -0
- data/lib/docdown/parser.rb +138 -0
- data/lib/docdown/version.rb +3 -0
- data/test/docdown/parser_test.rb +104 -0
- data/test/docdown/regex_test.rb +200 -0
- data/test/docdown/test_parse_java.rb +8 -0
- data/test/fixtures/README.md +905 -0
- data/test/fixtures/docdown.rb +8 -0
- data/test/fixtures/java_websockets.md +225 -0
- data/test/test_helper.rb +15 -0
- data/tmp.file +0 -0
- metadata +131 -0
@@ -0,0 +1,905 @@
|
|
1
|
+
This quickstart will get you going with a Java and Play Framework application that uses a WebSocket, deployed to Heroku. For general information on how to develop and architect apps for use on Heroku, see [Architecting Applications for Heroku](https://devcenter.heroku.com/articles/architecting-apps).
|
2
|
+
|
3
|
+
>note
|
4
|
+
> Sample code for the [demo application](https://github.com/heroku/play-ws-test) is available on GitHub. Edits and enhancements are welcome. Just fork the repository, make your changes and send us a pull request.
|
5
|
+
|
6
|
+
## Prerequisites
|
7
|
+
|
8
|
+
* Java, Play Framework 2.x, Git, and the Heroku client (as described in the [basic Java quickstart](java))
|
9
|
+
* A Heroku user account. [Signup is free and instant](https://api.heroku.com/signup/devcenter).
|
10
|
+
|
11
|
+
## Create a Play Framework Java app that uses a WebSocket
|
12
|
+
|
13
|
+
The sample application provides a simple example of using a WebSocket with Java and Play. You can clone the sample and follow along with the code as you read. If you'd rather write the app yourself you can add the sample code to a new Play app as you go.
|
14
|
+
|
15
|
+
### Option 1. Clone the sample app
|
16
|
+
|
17
|
+
If you want to get going more quickly you can just clone the sample app:
|
18
|
+
|
19
|
+
```term
|
20
|
+
$ git clone git@github.com:heroku/play-ws-test.git
|
21
|
+
Cloning into 'play-ws-test'...
|
22
|
+
remote: Counting objects: 31, done.
|
23
|
+
remote: Compressing objects: 100% (24/24), done.
|
24
|
+
remote: Total 31 (delta 0), reused 31 (delta 0)
|
25
|
+
Receiving objects: 100% (31/31), 38.33 KiB | 0 bytes/s, done.
|
26
|
+
Checking connectivity... done
|
27
|
+
```
|
28
|
+
|
29
|
+
### Option 2. Create a new Play app
|
30
|
+
|
31
|
+
```term
|
32
|
+
|
33
|
+
$ play new play22test
|
34
|
+
mywebsocketapp
|
35
|
+
|
36
|
+
Which template do you want to use for this new application?
|
37
|
+
|
38
|
+
1 - Create a simple Scala application
|
39
|
+
2 - Create a simple Java application
|
40
|
+
|
41
|
+
2
|
42
|
+
OK, application mywebsocketapp is created.
|
43
|
+
|
44
|
+
Have fun!
|
45
|
+
|
46
|
+
|
47
|
+
Choose an application name and Java as the language.
|
48
|
+
|
49
|
+
## The sample application
|
50
|
+
|
51
|
+
The sample application renders a simple web page that will open a WebSocket to the backend. The server will send a payload containing the time over the WebSocket once a second. That time will be displayed on the page.
|
52
|
+
|
53
|
+
There are 3 important pieces to the interaction that takes place here: a controller method that returns a WebSocket object, a JavaScript method that opens that WebSocket, and an Akka actor that sends the payload across that WebSocket every second. Let's explore each.
|
54
|
+
|
55
|
+
### Returning a WebSocket from a controller method
|
56
|
+
|
57
|
+
You can [return a WebSocket](http://www.playframework.com/documentation/2.2.x/JavaWebSockets) from a Play controller method.
|
58
|
+
|
59
|
+
There is an example in `Application.java` in the sample application:
|
60
|
+
|
61
|
+
```java
|
62
|
+
In file `play22test/app/controllers/Application.java` add:
|
63
|
+
package controllers;
|
64
|
+
|
65
|
+
import static java.util.concurrent.TimeUnit.SECONDS;
|
66
|
+
import models.Pinger;
|
67
|
+
import play.libs.Akka;
|
68
|
+
import play.libs.F.Callback0;
|
69
|
+
import play.mvc.Controller;
|
70
|
+
import play.mvc.Result;
|
71
|
+
import play.mvc.WebSocket;
|
72
|
+
import scala.concurrent.duration.Duration;
|
73
|
+
import views.html.index;
|
74
|
+
import akka.actor.ActorRef;
|
75
|
+
import akka.actor.Cancellable;
|
76
|
+
import akka.actor.Props;
|
77
|
+
|
78
|
+
public class Application extends Controller {
|
79
|
+
public static WebSocket<String> pingWs() {
|
80
|
+
return new WebSocket<String>() {
|
81
|
+
public void onReady(WebSocket.In<String> in, WebSocket.Out<String> out) {
|
82
|
+
final ActorRef pingActor = Akka.system().actorOf(Props.create(Pinger.class, in, out));
|
83
|
+
final Cancellable cancellable = Akka.system().scheduler().schedule(Duration.create(1, SECONDS),
|
84
|
+
Duration.create(1, SECONDS),
|
85
|
+
pingActor,
|
86
|
+
"Tick",
|
87
|
+
Akka.system().dispatcher(),
|
88
|
+
null
|
89
|
+
);
|
90
|
+
|
91
|
+
in.onClose(new Callback0() {
|
92
|
+
@Override
|
93
|
+
public void invoke() throws Throwable {
|
94
|
+
cancellable.cancel();
|
95
|
+
}
|
96
|
+
});
|
97
|
+
}
|
98
|
+
|
99
|
+
};
|
100
|
+
}
|
101
|
+
|
102
|
+
public static Result pingJs() {
|
103
|
+
return ok(views.js.ping.render());
|
104
|
+
}
|
105
|
+
|
106
|
+
public static Result index() {
|
107
|
+
return ok(index.render());
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
package controllers;
|
112
|
+
|
113
|
+
import static java.util.concurrent.TimeUnit.SECONDS;
|
114
|
+
import models.Pinger;
|
115
|
+
import play.libs.Akka;
|
116
|
+
import play.libs.F.Callback0;
|
117
|
+
import play.mvc.Controller;
|
118
|
+
import play.mvc.Result;
|
119
|
+
import play.mvc.WebSocket;
|
120
|
+
import scala.concurrent.duration.Duration;
|
121
|
+
import views.html.index;
|
122
|
+
import akka.actor.ActorRef;
|
123
|
+
import akka.actor.Cancellable;
|
124
|
+
import akka.actor.Props;
|
125
|
+
|
126
|
+
public class Application extends Controller {
|
127
|
+
public static WebSocket<String> pingWs() {
|
128
|
+
return new WebSocket<String>() {
|
129
|
+
public void onReady(WebSocket.In<String> in, WebSocket.Out<String> out) {
|
130
|
+
final ActorRef pingActor = Akka.system().actorOf(Props.create(Pinger.class, in, out));
|
131
|
+
final Cancellable cancellable = Akka.system().scheduler().schedule(Duration.create(1, SECONDS),
|
132
|
+
Duration.create(1, SECONDS),
|
133
|
+
pingActor,
|
134
|
+
"Tick",
|
135
|
+
Akka.system().dispatcher(),
|
136
|
+
null
|
137
|
+
);
|
138
|
+
|
139
|
+
in.onClose(new Callback0() {
|
140
|
+
@Override
|
141
|
+
public void invoke() throws Throwable {
|
142
|
+
cancellable.cancel();
|
143
|
+
}
|
144
|
+
});
|
145
|
+
}
|
146
|
+
|
147
|
+
};
|
148
|
+
}
|
149
|
+
|
150
|
+
public static Result pingJs() {
|
151
|
+
return ok(views.js.ping.render());
|
152
|
+
}
|
153
|
+
|
154
|
+
public static Result index() {
|
155
|
+
return ok(index.render());
|
156
|
+
}
|
157
|
+
}
|
158
|
+
```
|
159
|
+
|
160
|
+
This method returns a new [WebSocket](http://www.playframework.com/documentation/2.0/api/java/play/mvc/WebSocket.html) object that has a String as its payload. In the WebSocket object we define the onReady method to talk to an actor via the Akka scheduler. The work of sending data over the socket will occur in that actor.
|
161
|
+
|
162
|
+
The other methods will render our `js` and `html` templates.
|
163
|
+
|
164
|
+
|
165
|
+
We'll also need a route to be set up for these methods in our `routes` file:
|
166
|
+
|
167
|
+
```
|
168
|
+
In file `play22test/conf/routes` add:
|
169
|
+
# Home page
|
170
|
+
GET / controllers.Application.index()
|
171
|
+
GET /pingWs controllers.Application.pingWs()
|
172
|
+
GET /assets/javascripts/ping.js controllers.Application.pingJs()
|
173
|
+
|
174
|
+
# Map static resources from the /public folder to the /assets URL path
|
175
|
+
GET /assets/*file controllers.Assets.at(path="/public", file)
|
176
|
+
|
177
|
+
# Home page
|
178
|
+
GET / controllers.Application.index()
|
179
|
+
GET /pingWs controllers.Application.pingWs()
|
180
|
+
GET /assets/javascripts/ping.js controllers.Application.pingJs()
|
181
|
+
|
182
|
+
# Map static resources from the /public folder to the /assets URL path
|
183
|
+
GET /assets/*file controllers.Assets.at(path="/public", file)
|
184
|
+
```
|
185
|
+
|
186
|
+
### Sending data over a WebSocket
|
187
|
+
|
188
|
+
In the controller example you'll notice that we pass around the `in` and `out` streams of the WebSocket. In our actor we're able to read from and write to these streams just like any other IO stream. Here's the code for the `Pinger` actor:
|
189
|
+
|
190
|
+
```java
|
191
|
+
In file `play22test/app/models/Pinger.java` add:
|
192
|
+
package models;
|
193
|
+
|
194
|
+
import play.*;
|
195
|
+
import play.mvc.*;
|
196
|
+
import play.libs.*;
|
197
|
+
|
198
|
+
import scala.concurrent.duration.Duration;
|
199
|
+
import java.util.concurrent.TimeUnit;
|
200
|
+
import akka.actor.UntypedActor;
|
201
|
+
import java.util.Calendar;
|
202
|
+
import java.text.SimpleDateFormat;
|
203
|
+
|
204
|
+
public class Pinger extends UntypedActor {
|
205
|
+
WebSocket.In<String> in;
|
206
|
+
WebSocket.Out<String> out;
|
207
|
+
|
208
|
+
public Pinger(WebSocket.In<String> in, WebSocket.Out<String> out) {
|
209
|
+
this.in = in;
|
210
|
+
this.out = out;
|
211
|
+
}
|
212
|
+
|
213
|
+
@Override
|
214
|
+
public void onReceive(Object message) {
|
215
|
+
if (message.equals("Tick")) {
|
216
|
+
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
217
|
+
Calendar cal = Calendar.getInstance();
|
218
|
+
out.write(sdf.format(cal.getTime()));
|
219
|
+
} else {
|
220
|
+
unhandled(message);
|
221
|
+
}
|
222
|
+
}
|
223
|
+
}
|
224
|
+
|
225
|
+
package models;
|
226
|
+
|
227
|
+
import play.*;
|
228
|
+
import play.mvc.*;
|
229
|
+
import play.libs.*;
|
230
|
+
|
231
|
+
import scala.concurrent.duration.Duration;
|
232
|
+
import java.util.concurrent.TimeUnit;
|
233
|
+
import akka.actor.UntypedActor;
|
234
|
+
import java.util.Calendar;
|
235
|
+
import java.text.SimpleDateFormat;
|
236
|
+
|
237
|
+
public class Pinger extends UntypedActor {
|
238
|
+
WebSocket.In<String> in;
|
239
|
+
WebSocket.Out<String> out;
|
240
|
+
|
241
|
+
public Pinger(WebSocket.In<String> in, WebSocket.Out<String> out) {
|
242
|
+
this.in = in;
|
243
|
+
this.out = out;
|
244
|
+
}
|
245
|
+
|
246
|
+
@Override
|
247
|
+
public void onReceive(Object message) {
|
248
|
+
if (message.equals("Tick")) {
|
249
|
+
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
250
|
+
Calendar cal = Calendar.getInstance();
|
251
|
+
out.write(sdf.format(cal.getTime()));
|
252
|
+
} else {
|
253
|
+
unhandled(message);
|
254
|
+
}
|
255
|
+
}
|
256
|
+
}
|
257
|
+
```
|
258
|
+
|
259
|
+
You'll notice that this actor counts on the schedule defined in the controller method to send it a "Tick" message every second. When that happens it sends the current date and time over the WebSocket.
|
260
|
+
|
261
|
+
### Connecting to a WebSocket
|
262
|
+
|
263
|
+
The final piece is the client code that will call the WebSocket. For this our sample application uses Scala js and HTML templates called `ping.scala.js` and `index.scala.js` respectively.
|
264
|
+
|
265
|
+
`index.scala.js` provides a `div` to display the data in and references the JavaScript:
|
266
|
+
|
267
|
+
```java
|
268
|
+
In file `play22test/app/views/index.scala.html` add:
|
269
|
+
@main("Welcome to Play") {
|
270
|
+
|
271
|
+
<strong>Stats</strong><br>
|
272
|
+
<div id="ping"></div>
|
273
|
+
|
274
|
+
<script type="text/javascript" charset="utf-8" src="@routes.Application.pingJs()"></script>
|
275
|
+
}
|
276
|
+
|
277
|
+
@main("Welcome to Play") {
|
278
|
+
|
279
|
+
<strong>Stats</strong><br>
|
280
|
+
<div id="ping"></div>
|
281
|
+
|
282
|
+
<script type="text/javascript" charset="utf-8" src="@routes.Application.pingJs()"></script>
|
283
|
+
}
|
284
|
+
```
|
285
|
+
|
286
|
+
`ping.scala.js` connects to our WebSocket and defines the `receiveEvent` method to populate the dates into the displayed `div` as they come across:
|
287
|
+
|
288
|
+
```javascript
|
289
|
+
In file `play22test/app/views/ping.scala.js` add:
|
290
|
+
$(function() {
|
291
|
+
var WS = window['MozWebSocket'] ? MozWebSocket : WebSocket
|
292
|
+
var dateSocket = new WS("@routes.Application.pingWs().webSocketURL(request)")
|
293
|
+
|
294
|
+
var receiveEvent = function(event) {
|
295
|
+
$("#ping").html("Last ping: "+event.data);
|
296
|
+
}
|
297
|
+
|
298
|
+
dateSocket.onmessage = receiveEvent
|
299
|
+
})
|
300
|
+
|
301
|
+
$(function() {
|
302
|
+
var WS = window['MozWebSocket'] ? MozWebSocket : WebSocket
|
303
|
+
var dateSocket = new WS("@routes.Application.pingWs().webSocketURL(request)")
|
304
|
+
|
305
|
+
var receiveEvent = function(event) {
|
306
|
+
$("#ping").html("Last ping: "+event.data);
|
307
|
+
}
|
308
|
+
|
309
|
+
dateSocket.onmessage = receiveEvent
|
310
|
+
})
|
311
|
+
```
|
312
|
+
|
313
|
+
## Deploy the application to Heroku
|
314
|
+
|
315
|
+
### Store your app in Git
|
316
|
+
|
317
|
+
If you haven't done so already put your application into a git repository:
|
318
|
+
|
319
|
+
```term
|
320
|
+
$ cd play22test && git init
|
321
|
+
$ cd play22test && git add .
|
322
|
+
$ cd play22test && git commit -m "Ready to deploy"
|
323
|
+
```
|
324
|
+
|
325
|
+
### Create the app
|
326
|
+
|
327
|
+
```term
|
328
|
+
$ cd play22test && heroku create
|
329
|
+
Creating shrouded-basin-4761... done, stack is cedar
|
330
|
+
http://shrouded-basin-4761.herokuapp.com/ | git@heroku.com:shrouded-basin-4761.git
|
331
|
+
Git remote heroku added
|
332
|
+
```
|
333
|
+
|
334
|
+
### Deploy your code
|
335
|
+
|
336
|
+
```term
|
337
|
+
$ cd play22test && git push heroku master
|
338
|
+
|
339
|
+
-----> Play 2.x - Java app detected
|
340
|
+
-----> Installing OpenJDK 1.6...done
|
341
|
+
-----> Building app with sbt
|
342
|
+
-----> Running: sbt clean compile stage
|
343
|
+
Getting org.scala-sbt sbt 0.13.0 ...
|
344
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/sbt/0.13.0/jars/sbt.jar ...
|
345
|
+
[SUCCESSFUL ] org.scala-sbt#sbt;0.13.0!sbt.jar (354ms)
|
346
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/main/0.13.0/jars/main.jar ...
|
347
|
+
[SUCCESSFUL ] org.scala-sbt#main;0.13.0!main.jar (550ms)
|
348
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/compiler-interface/0.13.0/jars/compiler-interface-bin.jar ...
|
349
|
+
[SUCCESSFUL ] org.scala-sbt#compiler-interface;0.13.0!compiler-interface-bin.jar (300ms)
|
350
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/compiler-interface/0.13.0/jars/compiler-interface-src.jar ...
|
351
|
+
[SUCCESSFUL ] org.scala-sbt#compiler-interface;0.13.0!compiler-interface-src.jar (282ms)
|
352
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/precompiled-2_8_2/0.13.0/jars/compiler-interface-bin.jar ...
|
353
|
+
[SUCCESSFUL ] org.scala-sbt#precompiled-2_8_2;0.13.0!compiler-interface-bin.jar (365ms)
|
354
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/precompiled-2_9_2/0.13.0/jars/compiler-interface-bin.jar ...
|
355
|
+
[SUCCESSFUL ] org.scala-sbt#precompiled-2_9_2;0.13.0!compiler-interface-bin.jar (529ms)
|
356
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/precompiled-2_9_3/0.13.0/jars/compiler-interface-bin.jar ...
|
357
|
+
[SUCCESSFUL ] org.scala-sbt#precompiled-2_9_3;0.13.0!compiler-interface-bin.jar (319ms)
|
358
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/actions/0.13.0/jars/actions.jar ...
|
359
|
+
[SUCCESSFUL ] org.scala-sbt#actions;0.13.0!actions.jar (502ms)
|
360
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/main-settings/0.13.0/jars/main-settings.jar ...
|
361
|
+
[SUCCESSFUL ] org.scala-sbt#main-settings;0.13.0!main-settings.jar (526ms)
|
362
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/interface/0.13.0/jars/interface.jar ...
|
363
|
+
[SUCCESSFUL ] org.scala-sbt#interface;0.13.0!interface.jar (327ms)
|
364
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/io/0.13.0/jars/io.jar ...
|
365
|
+
[SUCCESSFUL ] org.scala-sbt#io;0.13.0!io.jar (641ms)
|
366
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/ivy/0.13.0/jars/ivy.jar ...
|
367
|
+
[SUCCESSFUL ] org.scala-sbt#ivy;0.13.0!ivy.jar (684ms)
|
368
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/launcher-interface/0.13.0/jars/launcher-interface.jar ...
|
369
|
+
[SUCCESSFUL ] org.scala-sbt#launcher-interface;0.13.0!launcher-interface.jar (365ms)
|
370
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/logging/0.13.0/jars/logging.jar ...
|
371
|
+
[SUCCESSFUL ] org.scala-sbt#logging;0.13.0!logging.jar (337ms)
|
372
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/process/0.13.0/jars/process.jar ...
|
373
|
+
[SUCCESSFUL ] org.scala-sbt#process;0.13.0!process.jar (341ms)
|
374
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/run/0.13.0/jars/run.jar ...
|
375
|
+
[SUCCESSFUL ] org.scala-sbt#run;0.13.0!run.jar (333ms)
|
376
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/command/0.13.0/jars/command.jar ...
|
377
|
+
[SUCCESSFUL ] org.scala-sbt#command;0.13.0!command.jar (250ms)
|
378
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/classpath/0.13.0/jars/classpath.jar ...
|
379
|
+
[SUCCESSFUL ] org.scala-sbt#classpath;0.13.0!classpath.jar (335ms)
|
380
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/completion/0.13.0/jars/completion.jar ...
|
381
|
+
[SUCCESSFUL ] org.scala-sbt#completion;0.13.0!completion.jar (466ms)
|
382
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/api/0.13.0/jars/api.jar ...
|
383
|
+
[SUCCESSFUL ] org.scala-sbt#api;0.13.0!api.jar (472ms)
|
384
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/compiler-integration/0.13.0/jars/compiler-integration.jar ...
|
385
|
+
[SUCCESSFUL ] org.scala-sbt#compiler-integration;0.13.0!compiler-integration.jar (806ms)
|
386
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/compiler-ivy-integration/0.13.0/jars/compiler-ivy-integration.jar ...
|
387
|
+
[SUCCESSFUL ] org.scala-sbt#compiler-ivy-integration;0.13.0!compiler-ivy-integration.jar (326ms)
|
388
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/relation/0.13.0/jars/relation.jar ...
|
389
|
+
[SUCCESSFUL ] org.scala-sbt#relation;0.13.0!relation.jar (472ms)
|
390
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/task-system/0.13.0/jars/task-system.jar ...
|
391
|
+
[SUCCESSFUL ] org.scala-sbt#task-system;0.13.0!task-system.jar (332ms)
|
392
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/tasks/0.13.0/jars/tasks.jar ...
|
393
|
+
[SUCCESSFUL ] org.scala-sbt#tasks;0.13.0!tasks.jar (372ms)
|
394
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/tracking/0.13.0/jars/tracking.jar ...
|
395
|
+
[SUCCESSFUL ] org.scala-sbt#tracking;0.13.0!tracking.jar (443ms)
|
396
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/testing/0.13.0/jars/testing.jar ...
|
397
|
+
[SUCCESSFUL ] org.scala-sbt#testing;0.13.0!testing.jar (407ms)
|
398
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/control/0.13.0/jars/control.jar ...
|
399
|
+
[SUCCESSFUL ] org.scala-sbt#control;0.13.0!control.jar (299ms)
|
400
|
+
downloading http://s3pository.heroku.com/maven-central/org/scala-lang/scala-reflect/2.10.2/scala-reflect-2.10.2.jar ...
|
401
|
+
[SUCCESSFUL ] org.scala-lang#scala-reflect;2.10.2!scala-reflect.jar (442ms)
|
402
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/collections/0.13.0/jars/collections.jar ...
|
403
|
+
[SUCCESSFUL ] org.scala-sbt#collections;0.13.0!collections.jar (550ms)
|
404
|
+
downloading http://s3pository.heroku.com/maven-central/jline/jline/2.11/jline-2.11.jar ...
|
405
|
+
[SUCCESSFUL ] jline#jline;2.11!jline.jar (290ms)
|
406
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/incremental-compiler/0.13.0/jars/incremental-compiler.jar ...
|
407
|
+
[SUCCESSFUL ] org.scala-sbt#incremental-compiler;0.13.0!incremental-compiler.jar (553ms)
|
408
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/compile/0.13.0/jars/compile.jar ...
|
409
|
+
[SUCCESSFUL ] org.scala-sbt#compile;0.13.0!compile.jar (534ms)
|
410
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/persist/0.13.0/jars/persist.jar ...
|
411
|
+
[SUCCESSFUL ] org.scala-sbt#persist;0.13.0!persist.jar (222ms)
|
412
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/classfile/0.13.0/jars/classfile.jar ...
|
413
|
+
[SUCCESSFUL ] org.scala-sbt#classfile;0.13.0!classfile.jar (469ms)
|
414
|
+
downloading http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-tools.sbinary/sbinary_2.10/0.4.2/jars/sbinary_2.10.jar ...
|
415
|
+
[SUCCESSFUL ] org.scala-tools.sbinary#sbinary_2.10;0.4.2!sbinary_2.10.jar (160ms)
|
416
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/cross/0.13.0/jars/cross.jar ...
|
417
|
+
[SUCCESSFUL ] org.scala-sbt#cross;0.13.0!cross.jar (263ms)
|
418
|
+
downloading http://s3pository.heroku.com/maven-central/org/apache/ivy/ivy/2.3.0-rc1/ivy-2.3.0-rc1.jar ...
|
419
|
+
[SUCCESSFUL ] org.apache.ivy#ivy;2.3.0-rc1!ivy.jar (230ms)
|
420
|
+
downloading http://s3pository.heroku.com/maven-central/com/jcraft/jsch/0.1.46/jsch-0.1.46.jar ...
|
421
|
+
[SUCCESSFUL ] com.jcraft#jsch;0.1.46!jsch.jar (256ms)
|
422
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/cache/0.13.0/jars/cache.jar ...
|
423
|
+
[SUCCESSFUL ] org.scala-sbt#cache;0.13.0!cache.jar (272ms)
|
424
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/test-agent/0.13.0/jars/test-agent.jar ...
|
425
|
+
[SUCCESSFUL ] org.scala-sbt#test-agent;0.13.0!test-agent.jar (291ms)
|
426
|
+
downloading http://s3pository.heroku.com/maven-central/org/scala-sbt/test-interface/1.0/test-interface-1.0.jar ...
|
427
|
+
[SUCCESSFUL ] org.scala-sbt#test-interface;1.0!test-interface.jar (213ms)
|
428
|
+
downloading http://s3pository.heroku.com/ivy-typesafe-releases/org.scala-sbt/apply-macro/0.13.0/jars/apply-macro.jar ...
|
429
|
+
[SUCCESSFUL ] org.scala-sbt#apply-macro;0.13.0!apply-macro.jar (346ms)
|
430
|
+
:: retrieving :: org.scala-sbt#boot-app
|
431
|
+
confs: [default]
|
432
|
+
43 artifacts copied, 0 already retrieved (12440kB/172ms)
|
433
|
+
Getting Scala 2.10.2 (for sbt)...
|
434
|
+
downloading http://s3pository.heroku.com/maven-central/org/scala-lang/scala-compiler/2.10.2/scala-compiler-2.10.2.jar ...
|
435
|
+
[SUCCESSFUL ] org.scala-lang#scala-compiler;2.10.2!scala-compiler.jar (2199ms)
|
436
|
+
downloading http://s3pository.heroku.com/maven-central/org/scala-lang/scala-library/2.10.2/scala-library-2.10.2.jar ...
|
437
|
+
[SUCCESSFUL ] org.scala-lang#scala-library;2.10.2!scala-library.jar (1259ms)
|
438
|
+
downloading http://s3pository.heroku.com/maven-central/org/scala-lang/jline/2.10.2/jline-2.10.2.jar ...
|
439
|
+
[SUCCESSFUL ] org.scala-lang#jline;2.10.2!jline.jar (207ms)
|
440
|
+
downloading http://s3pository.heroku.com/maven-central/org/fusesource/jansi/jansi/1.4/jansi-1.4.jar ...
|
441
|
+
[SUCCESSFUL ] org.fusesource.jansi#jansi;1.4!jansi.jar (197ms)
|
442
|
+
:: retrieving :: org.scala-sbt#boot-scala
|
443
|
+
confs: [default]
|
444
|
+
5 artifacts copied, 0 already retrieved (24390kB/50ms)
|
445
|
+
[warn] The global sbt directory is now versioned and is located at /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/.sbt_home/.sbt/0.13.
|
446
|
+
[warn] You are seeing this warning because there is global configuration in /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/.sbt_home/.sbt but not in /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/.sbt_home/.sbt/0.13.
|
447
|
+
[warn] The global sbt directory may be changed via the sbt.global.base system property.
|
448
|
+
[info] Loading project definition from /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/project
|
449
|
+
[warn] Multiple resolvers having different access mechanism configured with same name 'typesafe-ivy-releases'. To avoid conflict, Remove duplicate project resolvers (`resolvers`) or rename publishing resolver (`publishTo`).
|
450
|
+
[info] Set current project to mywebsocketapp (in build file:/tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/)
|
451
|
+
[success] Total time: 0 s, completed Oct 3, 2013 9:15:39 PM
|
452
|
+
[info] Updating {file:/tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/}build_3ae9a649-b02b-41f5-ac89-f0034c39a122...
|
453
|
+
[info] Resolving org.scala-lang#scala-library;2.10.2 ...
|
454
|
+
[info] Resolving com.typesafe.play#play-java-jdbc_2.10;2.2.0 ...
|
455
|
+
[info] Resolving com.typesafe.play#play-jdbc_2.10;2.2.0 ...
|
456
|
+
[info] Resolving com.typesafe.play#play_2.10;2.2.0 ...
|
457
|
+
[info] Resolving com.typesafe.play#sbt-link;2.2.0 ...
|
458
|
+
[info] Resolving org.javassist#javassist;3.18.0-GA ...
|
459
|
+
[info] Resolving com.typesafe.play#play-exceptions;2.2.0 ...
|
460
|
+
[info] Resolving com.typesafe.play#templates_2.10;2.2.0 ...
|
461
|
+
[info] Resolving com.github.scala-incubator.io#scala-io-file_2.10;0.4.2 ...
|
462
|
+
[info] Resolving com.github.scala-incubator.io#scala-io-core_2.10;0.4.2 ...
|
463
|
+
[info] Resolving com.jsuereth#scala-arm_2.10;1.3 ...
|
464
|
+
[info] Resolving com.typesafe.play#play-iteratees_2.10;2.2.0 ...
|
465
|
+
[info] Resolving org.scala-stm#scala-stm_2.10;0.7 ...
|
466
|
+
[info] Resolving com.typesafe#config;1.0.2 ...
|
467
|
+
[info] Resolving com.typesafe.play#play-json_2.10;2.2.0 ...
|
468
|
+
[info] Resolving com.typesafe.play#play-functional_2.10;2.2.0 ...
|
469
|
+
[info] Resolving com.typesafe.play#play-datacommons_2.10;2.2.0 ...
|
470
|
+
[info] Resolving joda-time#joda-time;2.2 ...
|
471
|
+
[info] Resolving org.joda#joda-convert;1.3.1 ...
|
472
|
+
[info] Resolving com.fasterxml.jackson.core#jackson-annotations;2.2.2 ...
|
473
|
+
[info] Resolving com.fasterxml#oss-parent;10 ...
|
474
|
+
[info] Resolving com.fasterxml.jackson.core#jackson-core;2.2.2 ...
|
475
|
+
[info] Resolving com.fasterxml#oss-parent;10 ...
|
476
|
+
[info] Resolving com.fasterxml.jackson.core#jackson-databind;2.2.2 ...
|
477
|
+
[info] Resolving com.fasterxml#oss-parent;10 ...
|
478
|
+
[info] Resolving org.scala-lang#scala-reflect;2.10.2 ...
|
479
|
+
[info] Resolving io.netty#netty;3.7.0.Final ...
|
480
|
+
[info] Resolving org.sonatype.oss#oss-parent;7 ...
|
481
|
+
[info] Resolving com.typesafe.netty#netty-http-pipelining;1.1.2 ...
|
482
|
+
[info] Resolving org.slf4j#slf4j-api;1.7.5 ...
|
483
|
+
[info] Resolving org.slf4j#slf4j-parent;1.7.5 ...
|
484
|
+
[info] Resolving org.slf4j#jul-to-slf4j;1.7.5 ...
|
485
|
+
[info] Resolving org.slf4j#slf4j-parent;1.7.5 ...
|
486
|
+
[info] Resolving org.slf4j#jcl-over-slf4j;1.7.5 ...
|
487
|
+
[info] Resolving org.slf4j#slf4j-parent;1.7.5 ...
|
488
|
+
[info] Resolving ch.qos.logback#logback-core;1.0.13 ...
|
489
|
+
[info] Resolving ch.qos.logback#logback-parent;1.0.13 ...
|
490
|
+
[info] Resolving ch.qos.logback#logback-classic;1.0.13 ...
|
491
|
+
[info] Resolving ch.qos.logback#logback-parent;1.0.13 ...
|
492
|
+
[info] Resolving com.typesafe.akka#akka-actor_2.10;2.2.0 ...
|
493
|
+
[info] Resolving com.typesafe.akka#akka-slf4j_2.10;2.2.0 ...
|
494
|
+
[info] Resolving org.apache.commons#commons-lang3;3.1 ...
|
495
|
+
[info] Resolving org.apache.commons#commons-parent;22 ...
|
496
|
+
[info] Resolving org.apache#apache;9 ...
|
497
|
+
[info] Resolving com.ning#async-http-client;1.7.18 ...
|
498
|
+
[info] Resolving org.sonatype.oss#oss-parent;5 ...
|
499
|
+
[info] Resolving oauth.signpost#signpost-core;1.2.1.2 ...
|
500
|
+
[info] Resolving oauth.signpost#oauth-signpost;1.2.1.2 ...
|
501
|
+
[info] Resolving commons-codec#commons-codec;1.3 ...
|
502
|
+
[info] Resolving oauth.signpost#signpost-commonshttp4;1.2.1.2 ...
|
503
|
+
[info] Resolving oauth.signpost#oauth-signpost;1.2.1.2 ...
|
504
|
+
[info] Resolving org.apache.httpcomponents#httpcore;4.0.1 ...
|
505
|
+
[info] Resolving org.apache.httpcomponents#httpcomponents-core;4.0.1 ...
|
506
|
+
[info] Resolving org.apache.httpcomponents#project;4.0 ...
|
507
|
+
[info] Resolving org.apache.httpcomponents#httpclient;4.0.1 ...
|
508
|
+
[info] Resolving org.apache.httpcomponents#httpcomponents-client;4.0.1 ...
|
509
|
+
[info] Resolving org.apache.httpcomponents#project;4.0 ...
|
510
|
+
[info] Resolving commons-logging#commons-logging;1.1.1 ...
|
511
|
+
[info] Resolving org.apache.commons#commons-parent;5 ...
|
512
|
+
[info] Resolving org.apache#apache;4 ...
|
513
|
+
[info] Resolving xerces#xercesImpl;2.11.0 ...
|
514
|
+
[info] Resolving xml-apis#xml-apis;1.4.01 ...
|
515
|
+
[info] Resolving javax.transaction#jta;1.1 ...
|
516
|
+
[info] Resolving com.jolbox#bonecp;0.8.0-rc1 ...
|
517
|
+
[info] Resolving com.jolbox#bonecp-parent;0.8.0-rc1 ...
|
518
|
+
[info] Resolving com.google.guava#guava;14.0.1 ...
|
519
|
+
[info] Resolving com.h2database#h2;1.3.172 ...
|
520
|
+
[info] Resolving tyrex#tyrex;1.0.1 ...
|
521
|
+
[info] Resolving com.typesafe.play#play-java_2.10;2.2.0 ...
|
522
|
+
[info] Resolving org.yaml#snakeyaml;1.12 ...
|
523
|
+
[info] Resolving org.hibernate#hibernate-validator;5.0.1.Final ...
|
524
|
+
[info] Resolving org.hibernate#hibernate-validator-parent;5.0.1.Final ...
|
525
|
+
[info] Resolving org.jboss.arquillian#arquillian-bom;1.0.2.Final ...
|
526
|
+
[info] Resolving org.jboss.shrinkwrap#shrinkwrap-bom;1.0.1 ...
|
527
|
+
[info] Resolving org.jboss.shrinkwrap.resolver#shrinkwrap-resolver-bom;1.0.0-beta-7 ...
|
528
|
+
[info] Resolving org.jboss.shrinkwrap.descriptors#shrinkwrap-descriptors-bom;2.0.0-alpha-3 ...
|
529
|
+
[info] Resolving javax.validation#validation-api;1.1.0.Final ...
|
530
|
+
[info] Resolving org.jboss.logging#jboss-logging;3.1.1.GA ...
|
531
|
+
[info] Resolving org.jboss#jboss-parent;7 ...
|
532
|
+
[info] Resolving com.fasterxml#classmate;0.8.0 ...
|
533
|
+
[info] Resolving org.sonatype.oss#oss-parent;7 ...
|
534
|
+
[info] Resolving org.springframework#spring-context;3.2.3.RELEASE ...
|
535
|
+
[info] Resolving org.springframework#spring-core;3.2.3.RELEASE ...
|
536
|
+
[info] Resolving org.springframework#spring-beans;3.2.3.RELEASE ...
|
537
|
+
[info] Resolving org.reflections#reflections;0.9.8 ...
|
538
|
+
[info] Resolving org.reflections#reflections-parent;0.9.8 ...
|
539
|
+
[info] Resolving dom4j#dom4j;1.6.1 ...
|
540
|
+
[info] Resolving com.google.code.findbugs#jsr305;2.0.1 ...
|
541
|
+
[info] Resolving javax.servlet#javax.servlet-api;3.0.1 ...
|
542
|
+
[info] Resolving net.java#jvnet-parent;1 ...
|
543
|
+
[info] Resolving com.typesafe.play#play-java-ebean_2.10;2.2.0 ...
|
544
|
+
[info] Resolving org.avaje.ebeanorm#avaje-ebeanorm;3.2.2 ...
|
545
|
+
[info] Resolving org.avaje#avaje-javaparent;1.2 ...
|
546
|
+
[info] Resolving org.avaje#avaje-parent;1.2 ...
|
547
|
+
[info] Resolving org.sonatype.oss#oss-parent;7 ...
|
548
|
+
[info] Resolving org.avaje.ebeanorm#avaje-ebeanorm-agent;3.2.1 ...
|
549
|
+
[info] Resolving org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final ...
|
550
|
+
[info] Resolving com.typesafe.play#play-cache_2.10;2.2.0 ...
|
551
|
+
[error] SERVER ERROR: Gateway Timeout url=http://s3pository.heroku.com/maven-central/com/typesafe/play/play-cache_2.10/2.2.0/play-cache_2.10-2.2.0.pom
|
552
|
+
[info] Resolving net.sf.ehcache#ehcache-core;2.6.6 ...
|
553
|
+
[info] Resolving net.sf.ehcache#ehcache-parent;2.3 ...
|
554
|
+
[info] Resolving com.typesafe.play#play-test_2.10;2.2.0 ...
|
555
|
+
[info] Resolving junit#junit;4.11 ...
|
556
|
+
[info] Resolving org.hamcrest#hamcrest-core;1.3 ...
|
557
|
+
[info] Resolving org.hamcrest#hamcrest-parent;1.3 ...
|
558
|
+
[info] Resolving org.specs2#specs2_2.10;2.1.1 ...
|
559
|
+
[info] Resolving org.scalaz#scalaz-core_2.10;7.0.2 ...
|
560
|
+
[info] Resolving org.scalaz#scalaz-concurrent_2.10;7.0.2 ...
|
561
|
+
[info] Resolving org.scalaz#scalaz-effect_2.10;7.0.2 ...
|
562
|
+
[info] Resolving com.novocode#junit-interface;0.10 ...
|
563
|
+
[info] Resolving org.scala-tools.testing#test-interface;0.5 ...
|
564
|
+
[info] Resolving org.fluentlenium#fluentlenium-festassert;0.8.0 ...
|
565
|
+
[info] Resolving org.fluentlenium#fluentlenium-parent;0.8.0 ...
|
566
|
+
[info] Resolving org.sonatype.oss#oss-parent;7 ...
|
567
|
+
[info] Resolving org.fluentlenium#fluentlenium-core;0.8.0 ...
|
568
|
+
[info] Resolving org.fluentlenium#fluentlenium-parent;0.8.0 ...
|
569
|
+
[info] Resolving org.seleniumhq.selenium#selenium-java;2.32.0 ...
|
570
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
571
|
+
[info] Resolving org.seleniumhq.selenium#selenium-android-driver;2.32.0 ...
|
572
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
573
|
+
[info] Resolving org.seleniumhq.selenium#selenium-remote-driver;2.32.0 ...
|
574
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
575
|
+
[info] Resolving cglib#cglib-nodep;2.1_3 ...
|
576
|
+
[info] Resolving org.json#json;20080701 ...
|
577
|
+
[info] Resolving org.seleniumhq.selenium#selenium-api;2.32.0 ...
|
578
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
579
|
+
[info] Resolving org.apache.httpcomponents#httpclient;4.2.1 ...
|
580
|
+
[info] Resolving org.apache.httpcomponents#httpcomponents-client;4.2.1 ...
|
581
|
+
[info] Resolving org.apache.httpcomponents#project;6 ...
|
582
|
+
[info] Resolving org.apache.httpcomponents#httpcore;4.2.1 ...
|
583
|
+
[info] Resolving org.apache.httpcomponents#httpcomponents-core;4.2.1 ...
|
584
|
+
[info] Resolving org.apache.httpcomponents#project;6 ...
|
585
|
+
[info] Resolving commons-codec#commons-codec;1.6 ...
|
586
|
+
[info] Resolving org.apache.commons#commons-parent;22 ...
|
587
|
+
[info] Resolving org.apache.commons#commons-exec;1.1 ...
|
588
|
+
[info] Resolving org.apache.commons#commons-parent;17 ...
|
589
|
+
[info] Resolving org.apache#apache;7 ...
|
590
|
+
[info] Resolving net.java.dev.jna#jna;3.4.0 ...
|
591
|
+
[info] Resolving net.java.dev.jna#platform;3.4.0 ...
|
592
|
+
[info] Resolving org.seleniumhq.selenium#selenium-chrome-driver;2.32.0 ...
|
593
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
594
|
+
[info] Resolving org.seleniumhq.selenium#selenium-htmlunit-driver;2.32.0 ...
|
595
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
596
|
+
[info] Resolving net.sourceforge.htmlunit#htmlunit;2.12 ...
|
597
|
+
[info] Resolving xalan#xalan;2.7.1 ...
|
598
|
+
[info] Resolving org.apache#apache;4 ...
|
599
|
+
[info] Resolving xalan#serializer;2.7.1 ...
|
600
|
+
[info] Resolving org.apache#apache;4 ...
|
601
|
+
[info] Resolving commons-collections#commons-collections;3.2.1 ...
|
602
|
+
[info] Resolving org.apache.commons#commons-parent;9 ...
|
603
|
+
[info] Resolving org.apache#apache;4 ...
|
604
|
+
[info] Resolving org.apache.httpcomponents#httpmime;4.2.3 ...
|
605
|
+
[info] Resolving org.apache.httpcomponents#httpcomponents-client;4.2.3 ...
|
606
|
+
[info] Resolving org.apache.httpcomponents#project;6 ...
|
607
|
+
[info] Resolving net.sourceforge.htmlunit#htmlunit-core-js;2.12 ...
|
608
|
+
[info] Resolving net.sourceforge.nekohtml#nekohtml;1.9.18 ...
|
609
|
+
[info] Resolving net.sourceforge.cssparser#cssparser;0.9.9 ...
|
610
|
+
[info] Resolving org.sonatype.oss#oss-parent;7 ...
|
611
|
+
[info] Resolving org.w3c.css#sac;1.3 ...
|
612
|
+
[info] Resolving commons-io#commons-io;2.2 ...
|
613
|
+
[info] Resolving org.apache.commons#commons-parent;24 ...
|
614
|
+
[info] Resolving org.eclipse.jetty#jetty-websocket;8.1.9.v20130131 ...
|
615
|
+
[info] Resolving org.eclipse.jetty#jetty-project;8.1.9.v20130131 ...
|
616
|
+
[info] Resolving org.eclipse.jetty#jetty-parent;20 ...
|
617
|
+
[info] Resolving org.eclipse.jetty#jetty-util;8.1.9.v20130131 ...
|
618
|
+
[info] Resolving org.eclipse.jetty#jetty-project;8.1.9.v20130131 ...
|
619
|
+
[info] Resolving org.eclipse.jetty#jetty-io;8.1.9.v20130131 ...
|
620
|
+
[info] Resolving org.eclipse.jetty#jetty-project;8.1.9.v20130131 ...
|
621
|
+
[info] Resolving org.eclipse.jetty#jetty-http;8.1.9.v20130131 ...
|
622
|
+
[info] Resolving org.eclipse.jetty#jetty-project;8.1.9.v20130131 ...
|
623
|
+
[info] Resolving org.seleniumhq.selenium#selenium-firefox-driver;2.32.0 ...
|
624
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
625
|
+
[info] Resolving org.seleniumhq.selenium#selenium-ie-driver;2.32.0 ...
|
626
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
627
|
+
[info] Resolving org.seleniumhq.selenium#selenium-iphone-driver;2.32.0 ...
|
628
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
629
|
+
[info] Resolving org.seleniumhq.selenium#selenium-safari-driver;2.32.0 ...
|
630
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
631
|
+
[info] Resolving org.webbitserver#webbit;0.4.14 ...
|
632
|
+
[info] Resolving org.sonatype.oss#oss-parent;6 ...
|
633
|
+
[info] Resolving org.seleniumhq.selenium#selenium-support;2.32.0 ...
|
634
|
+
[info] Resolving org.seleniumhq.selenium#selenium-parent;2.32.0 ...
|
635
|
+
[info] Resolving org.easytesting#fest-assert;1.4 ...
|
636
|
+
[info] Resolving org.easytesting#fest;1.0.8 ...
|
637
|
+
[info] Resolving org.easytesting#fest-util;1.1.6 ...
|
638
|
+
[info] Resolving org.easytesting#fest;1.0.8 ...
|
639
|
+
[info] Resolving com.typesafe.play#play-docs_2.10;2.2.0 ...
|
640
|
+
[info] Resolving org.scala-lang#scala-library;2.10.0 ...
|
641
|
+
[info] Resolving com.typesafe.play#play-doc_2.10;1.0.3 ...
|
642
|
+
[info] Resolving org.pegdown#pegdown;1.4.0 ...
|
643
|
+
[info] Resolving org.parboiled#parboiled-java;1.1.5 ...
|
644
|
+
[info] Resolving org.parboiled#parboiled-core;1.1.5 ...
|
645
|
+
[info] Resolving org.ow2.asm#asm;4.1 ...
|
646
|
+
[info] Resolving org.ow2.asm#asm-parent;4.1 ...
|
647
|
+
[info] Resolving org.ow2#ow2;1.3 ...
|
648
|
+
[info] Resolving org.ow2.asm#asm-tree;4.1 ...
|
649
|
+
[info] Resolving org.ow2.asm#asm-parent;4.1 ...
|
650
|
+
[info] Resolving org.ow2.asm#asm-analysis;4.1 ...
|
651
|
+
[info] Resolving org.ow2.asm#asm-parent;4.1 ...
|
652
|
+
[info] Resolving org.ow2.asm#asm-util;4.1 ...
|
653
|
+
[info] Resolving org.ow2.asm#asm-parent;4.1 ...
|
654
|
+
[info] Resolving commons-io#commons-io;2.4 ...
|
655
|
+
[info] Resolving org.apache.commons#commons-parent;25 ...
|
656
|
+
[info] Resolving org.apache#apache;9 ...
|
657
|
+
[info] Resolving org.scala-lang#scala-compiler;2.10.2 ...
|
658
|
+
[info] Resolving org.scala-lang#jline;2.10.2 ...
|
659
|
+
[info] Resolving org.fusesource.jansi#jansi;1.4 ...
|
660
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-java-jdbc_2.10/2.2.0/play-java-jdbc_2.10-2.2.0.jar ...
|
661
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-java-jdbc_2.10;2.2.0!play-java-jdbc_2.10.jar (78ms)
|
662
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-java-ebean_2.10/2.2.0/play-java-ebean_2.10-2.2.0.jar ...
|
663
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-java-ebean_2.10;2.2.0!play-java-ebean_2.10.jar (79ms)
|
664
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-cache_2.10/2.2.0/play-cache_2.10-2.2.0.jar ...
|
665
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-cache_2.10;2.2.0!play-cache_2.10.jar (77ms)
|
666
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play_2.10/2.2.0/play_2.10-2.2.0.jar ...
|
667
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play_2.10;2.2.0!play_2.10.jar (470ms)
|
668
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-java_2.10/2.2.0/play-java_2.10-2.2.0.jar ...
|
669
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-java_2.10;2.2.0!play-java_2.10.jar (111ms)
|
670
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-jdbc_2.10/2.2.0/play-jdbc_2.10-2.2.0.jar ...
|
671
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-jdbc_2.10;2.2.0!play-jdbc_2.10.jar (133ms)
|
672
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/jolbox/bonecp/0.8.0-rc1/bonecp-0.8.0-rc1.jar ...
|
673
|
+
[info] [SUCCESSFUL ] com.jolbox#bonecp;0.8.0-rc1!bonecp.jar(bundle) (311ms)
|
674
|
+
[info] downloading http://s3pository.heroku.com/maven-central/tyrex/tyrex/1.0.1/tyrex-1.0.1.jar ...
|
675
|
+
[info] [SUCCESSFUL ] tyrex#tyrex;1.0.1!tyrex.jar (276ms)
|
676
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/templates_2.10/2.2.0/templates_2.10-2.2.0.jar ...
|
677
|
+
[info] [SUCCESSFUL ] com.typesafe.play#templates_2.10;2.2.0!templates_2.10.jar (107ms)
|
678
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-iteratees_2.10/2.2.0/play-iteratees_2.10-2.2.0.jar ...
|
679
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-iteratees_2.10;2.2.0!play-iteratees_2.10.jar (138ms)
|
680
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-json_2.10/2.2.0/play-json_2.10-2.2.0.jar ...
|
681
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-json_2.10;2.2.0!play-json_2.10.jar (113ms)
|
682
|
+
[info] downloading http://s3pository.heroku.com/maven-central/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar ...
|
683
|
+
[info] [SUCCESSFUL ] io.netty#netty;3.7.0.Final!netty.jar(bundle) (448ms)
|
684
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/netty/netty-http-pipelining/1.1.2/netty-http-pipelining-1.1.2.jar ...
|
685
|
+
[info] [SUCCESSFUL ] com.typesafe.netty#netty-http-pipelining;1.1.2!netty-http-pipelining.jar (74ms)
|
686
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar ...
|
687
|
+
[info] [SUCCESSFUL ] org.slf4j#slf4j-api;1.7.5!slf4j-api.jar (179ms)
|
688
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/slf4j/jul-to-slf4j/1.7.5/jul-to-slf4j-1.7.5.jar ...
|
689
|
+
[info] [SUCCESSFUL ] org.slf4j#jul-to-slf4j;1.7.5!jul-to-slf4j.jar (190ms)
|
690
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/slf4j/jcl-over-slf4j/1.7.5/jcl-over-slf4j-1.7.5.jar ...
|
691
|
+
[info] [SUCCESSFUL ] org.slf4j#jcl-over-slf4j;1.7.5!jcl-over-slf4j.jar (218ms)
|
692
|
+
[info] downloading http://s3pository.heroku.com/maven-central/ch/qos/logback/logback-core/1.0.13/logback-core-1.0.13.jar ...
|
693
|
+
[info] [SUCCESSFUL ] ch.qos.logback#logback-core;1.0.13!logback-core.jar (487ms)
|
694
|
+
[info] downloading http://s3pository.heroku.com/maven-central/ch/qos/logback/logback-classic/1.0.13/logback-classic-1.0.13.jar ...
|
695
|
+
[info] [SUCCESSFUL ] ch.qos.logback#logback-classic;1.0.13!logback-classic.jar (332ms)
|
696
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/typesafe/akka/akka-actor_2.10/2.2.0/akka-actor_2.10-2.2.0.jar ...
|
697
|
+
[info] [SUCCESSFUL ] com.typesafe.akka#akka-actor_2.10;2.2.0!akka-actor_2.10.jar (402ms)
|
698
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/typesafe/akka/akka-slf4j_2.10/2.2.0/akka-slf4j_2.10-2.2.0.jar ...
|
699
|
+
[info] [SUCCESSFUL ] com.typesafe.akka#akka-slf4j_2.10;2.2.0!akka-slf4j_2.10.jar(bundle) (226ms)
|
700
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/scala-stm/scala-stm_2.10/0.7/scala-stm_2.10-0.7.jar ...
|
701
|
+
[info] [SUCCESSFUL ] org.scala-stm#scala-stm_2.10;0.7!scala-stm_2.10.jar (493ms)
|
702
|
+
[info] downloading http://s3pository.heroku.com/maven-central/joda-time/joda-time/2.2/joda-time-2.2.jar ...
|
703
|
+
[info] [SUCCESSFUL ] joda-time#joda-time;2.2!joda-time.jar (350ms)
|
704
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/joda/joda-convert/1.3.1/joda-convert-1.3.1.jar ...
|
705
|
+
[info] [SUCCESSFUL ] org.joda#joda-convert;1.3.1!joda-convert.jar (161ms)
|
706
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar ...
|
707
|
+
[info] [SUCCESSFUL ] org.apache.commons#commons-lang3;3.1!commons-lang3.jar (324ms)
|
708
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/ning/async-http-client/1.7.18/async-http-client-1.7.18.jar ...
|
709
|
+
[info] [SUCCESSFUL ] com.ning#async-http-client;1.7.18!async-http-client.jar (262ms)
|
710
|
+
[info] downloading http://s3pository.heroku.com/maven-central/oauth/signpost/signpost-core/1.2.1.2/signpost-core-1.2.1.2.jar ...
|
711
|
+
[info] [SUCCESSFUL ] oauth.signpost#signpost-core;1.2.1.2!signpost-core.jar (462ms)
|
712
|
+
[info] downloading http://s3pository.heroku.com/maven-central/oauth/signpost/signpost-commonshttp4/1.2.1.2/signpost-commonshttp4-1.2.1.2.jar ...
|
713
|
+
[info] [SUCCESSFUL ] oauth.signpost#signpost-commonshttp4;1.2.1.2!signpost-commonshttp4.jar (213ms)
|
714
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/fasterxml/jackson/core/jackson-core/2.2.2/jackson-core-2.2.2.jar ...
|
715
|
+
[info] [SUCCESSFUL ] com.fasterxml.jackson.core#jackson-core;2.2.2!jackson-core.jar (257ms)
|
716
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/fasterxml/jackson/core/jackson-annotations/2.2.2/jackson-annotations-2.2.2.jar ...
|
717
|
+
[info] [SUCCESSFUL ] com.fasterxml.jackson.core#jackson-annotations;2.2.2!jackson-annotations.jar (231ms)
|
718
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/fasterxml/jackson/core/jackson-databind/2.2.2/jackson-databind-2.2.2.jar ...
|
719
|
+
[info] [SUCCESSFUL ] com.fasterxml.jackson.core#jackson-databind;2.2.2!jackson-databind.jar (448ms)
|
720
|
+
[info] downloading http://s3pository.heroku.com/maven-central/xerces/xercesImpl/2.11.0/xercesImpl-2.11.0.jar ...
|
721
|
+
[info] [SUCCESSFUL ] xerces#xercesImpl;2.11.0!xercesImpl.jar (407ms)
|
722
|
+
[info] downloading http://s3pository.heroku.com/maven-central/javax/transaction/jta/1.1/jta-1.1.jar ...
|
723
|
+
[info] [SUCCESSFUL ] javax.transaction#jta;1.1!jta.jar (209ms)
|
724
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-functional_2.10/2.2.0/play-functional_2.10-2.2.0.jar ...
|
725
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-functional_2.10;2.2.0!play-functional_2.10.jar (103ms)
|
726
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-datacommons_2.10/2.2.0/play-datacommons_2.10-2.2.0.jar ...
|
727
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-datacommons_2.10;2.2.0!play-datacommons_2.10.jar (84ms)
|
728
|
+
[info] downloading http://s3pository.heroku.com/maven-central/commons-codec/commons-codec/1.3/commons-codec-1.3.jar ...
|
729
|
+
[info] [SUCCESSFUL ] commons-codec#commons-codec;1.3!commons-codec.jar (165ms)
|
730
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar ...
|
731
|
+
[info] [SUCCESSFUL ] org.apache.httpcomponents#httpcore;4.0.1!httpcore.jar (289ms)
|
732
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/apache/httpcomponents/httpclient/4.0.1/httpclient-4.0.1.jar ...
|
733
|
+
[info] [SUCCESSFUL ] org.apache.httpcomponents#httpclient;4.0.1!httpclient.jar (442ms)
|
734
|
+
[info] downloading http://s3pository.heroku.com/maven-central/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar ...
|
735
|
+
[info] [SUCCESSFUL ] commons-logging#commons-logging;1.1.1!commons-logging.jar (239ms)
|
736
|
+
[info] downloading http://s3pository.heroku.com/maven-central/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar ...
|
737
|
+
[info] [SUCCESSFUL ] xml-apis#xml-apis;1.4.01!xml-apis.jar (394ms)
|
738
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/yaml/snakeyaml/1.12/snakeyaml-1.12.jar ...
|
739
|
+
[info] [SUCCESSFUL ] org.yaml#snakeyaml;1.12!snakeyaml.jar(bundle) (374ms)
|
740
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/hibernate/hibernate-validator/5.0.1.Final/hibernate-validator-5.0.1.Final.jar ...
|
741
|
+
[info] [SUCCESSFUL ] org.hibernate#hibernate-validator;5.0.1.Final!hibernate-validator.jar (282ms)
|
742
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/springframework/spring-context/3.2.3.RELEASE/spring-context-3.2.3.RELEASE.jar ...
|
743
|
+
[info] [SUCCESSFUL ] org.springframework#spring-context;3.2.3.RELEASE!spring-context.jar (250ms)
|
744
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/springframework/spring-core/3.2.3.RELEASE/spring-core-3.2.3.RELEASE.jar ...
|
745
|
+
[info] [SUCCESSFUL ] org.springframework#spring-core;3.2.3.RELEASE!spring-core.jar (363ms)
|
746
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/springframework/spring-beans/3.2.3.RELEASE/spring-beans-3.2.3.RELEASE.jar ...
|
747
|
+
[info] [SUCCESSFUL ] org.springframework#spring-beans;3.2.3.RELEASE!spring-beans.jar (238ms)
|
748
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/reflections/reflections/0.9.8/reflections-0.9.8.jar ...
|
749
|
+
[info] [SUCCESSFUL ] org.reflections#reflections;0.9.8!reflections.jar (687ms)
|
750
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar ...
|
751
|
+
[info] [SUCCESSFUL ] com.google.code.findbugs#jsr305;2.0.1!jsr305.jar (523ms)
|
752
|
+
[info] downloading http://s3pository.heroku.com/maven-central/javax/servlet/javax.servlet-api/3.0.1/javax.servlet-api-3.0.1.jar ...
|
753
|
+
[info] [SUCCESSFUL ] javax.servlet#javax.servlet-api;3.0.1!javax.servlet-api.jar (306ms)
|
754
|
+
[info] downloading http://s3pository.heroku.com/maven-central/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar ...
|
755
|
+
[info] [SUCCESSFUL ] javax.validation#validation-api;1.1.0.Final!validation-api.jar (222ms)
|
756
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/jboss/logging/jboss-logging/3.1.1.GA/jboss-logging-3.1.1.GA.jar ...
|
757
|
+
[info] [SUCCESSFUL ] org.jboss.logging#jboss-logging;3.1.1.GA!jboss-logging.jar (206ms)
|
758
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/fasterxml/classmate/0.8.0/classmate-0.8.0.jar ...
|
759
|
+
[info] [SUCCESSFUL ] com.fasterxml#classmate;0.8.0!classmate.jar(bundle) (387ms)
|
760
|
+
[info] downloading http://s3pository.heroku.com/maven-central/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar ...
|
761
|
+
[info] [SUCCESSFUL ] dom4j#dom4j;1.6.1!dom4j.jar (746ms)
|
762
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/avaje/ebeanorm/avaje-ebeanorm/3.2.2/avaje-ebeanorm-3.2.2.jar ...
|
763
|
+
[info] [SUCCESSFUL ] org.avaje.ebeanorm#avaje-ebeanorm;3.2.2!avaje-ebeanorm.jar (549ms)
|
764
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar ...
|
765
|
+
[info] [SUCCESSFUL ] org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final!hibernate-jpa-2.0-api.jar (241ms)
|
766
|
+
[info] downloading http://s3pository.heroku.com/maven-central/net/sf/ehcache/ehcache-core/2.6.6/ehcache-core-2.6.6.jar ...
|
767
|
+
[info] [SUCCESSFUL ] net.sf.ehcache#ehcache-core;2.6.6!ehcache-core.jar (810ms)
|
768
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-test_2.10/2.2.0/play-test_2.10-2.2.0.jar ...
|
769
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-test_2.10;2.2.0!play-test_2.10.jar (160ms)
|
770
|
+
[info] downloading http://s3pository.heroku.com/maven-central/junit/junit/4.11/junit-4.11.jar ...
|
771
|
+
[info] [SUCCESSFUL ] junit#junit;4.11!junit.jar (333ms)
|
772
|
+
[info] downloading http://s3pository.heroku.com/maven-central/com/novocode/junit-interface/0.10/junit-interface-0.10.jar ...
|
773
|
+
[info] [SUCCESSFUL ] com.novocode#junit-interface;0.10!junit-interface.jar (258ms)
|
774
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/fluentlenium/fluentlenium-festassert/0.8.0/fluentlenium-festassert-0.8.0.jar ...
|
775
|
+
[info] [SUCCESSFUL ] org.fluentlenium#fluentlenium-festassert;0.8.0!fluentlenium-festassert.jar (1033ms)
|
776
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar ...
|
777
|
+
[info] [SUCCESSFUL ] org.hamcrest#hamcrest-core;1.3!hamcrest-core.jar (173ms)
|
778
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/scala-tools/testing/test-interface/0.5/test-interface-0.5.jar ...
|
779
|
+
[info] [SUCCESSFUL ] org.scala-tools.testing#test-interface;0.5!test-interface.jar (275ms)
|
780
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/fluentlenium/fluentlenium-core/0.8.0/fluentlenium-core-0.8.0.jar ...
|
781
|
+
[info] [SUCCESSFUL ] org.fluentlenium#fluentlenium-core;0.8.0!fluentlenium-core.jar (562ms)
|
782
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/easytesting/fest-assert/1.4/fest-assert-1.4.jar ...
|
783
|
+
[info] [SUCCESSFUL ] org.easytesting#fest-assert;1.4!fest-assert.jar (320ms)
|
784
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-java/2.32.0/selenium-java-2.32.0.jar ...
|
785
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-java;2.32.0!selenium-java.jar (402ms)
|
786
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-android-driver/2.32.0/selenium-android-driver-2.32.0.jar ...
|
787
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-android-driver;2.32.0!selenium-android-driver.jar (313ms)
|
788
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-chrome-driver/2.32.0/selenium-chrome-driver-2.32.0.jar ...
|
789
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-chrome-driver;2.32.0!selenium-chrome-driver.jar (319ms)
|
790
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-htmlunit-driver/2.32.0/selenium-htmlunit-driver-2.32.0.jar ...
|
791
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-htmlunit-driver;2.32.0!selenium-htmlunit-driver.jar (352ms)
|
792
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-firefox-driver/2.32.0/selenium-firefox-driver-2.32.0.jar ...
|
793
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-firefox-driver;2.32.0!selenium-firefox-driver.jar (535ms)
|
794
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-ie-driver/2.32.0/selenium-ie-driver-2.32.0.jar ...
|
795
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-ie-driver;2.32.0!selenium-ie-driver.jar (251ms)
|
796
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-iphone-driver/2.32.0/selenium-iphone-driver-2.32.0.jar ...
|
797
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-iphone-driver;2.32.0!selenium-iphone-driver.jar (258ms)
|
798
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-safari-driver/2.32.0/selenium-safari-driver-2.32.0.jar ...
|
799
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-safari-driver;2.32.0!selenium-safari-driver.jar (272ms)
|
800
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-support/2.32.0/selenium-support-2.32.0.jar ...
|
801
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-support;2.32.0!selenium-support.jar (558ms)
|
802
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/webbitserver/webbit/0.4.14/webbit-0.4.14.jar ...
|
803
|
+
[info] [SUCCESSFUL ] org.webbitserver#webbit;0.4.14!webbit.jar (327ms)
|
804
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-remote-driver/2.32.0/selenium-remote-driver-2.32.0.jar ...
|
805
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-remote-driver;2.32.0!selenium-remote-driver.jar (455ms)
|
806
|
+
[info] downloading http://s3pository.heroku.com/maven-central/cglib/cglib-nodep/2.1_3/cglib-nodep-2.1_3.jar ...
|
807
|
+
[info] [SUCCESSFUL ] cglib#cglib-nodep;2.1_3!cglib-nodep.jar (462ms)
|
808
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/json/json/20080701/json-20080701.jar ...
|
809
|
+
[info] [SUCCESSFUL ] org.json#json;20080701!json.jar (322ms)
|
810
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/seleniumhq/selenium/selenium-api/2.32.0/selenium-api-2.32.0.jar ...
|
811
|
+
[info] [SUCCESSFUL ] org.seleniumhq.selenium#selenium-api;2.32.0!selenium-api.jar (285ms)
|
812
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/apache/httpcomponents/httpclient/4.2.1/httpclient-4.2.1.jar ...
|
813
|
+
[info] [SUCCESSFUL ] org.apache.httpcomponents#httpclient;4.2.1!httpclient.jar (343ms)
|
814
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/apache/commons/commons-exec/1.1/commons-exec-1.1.jar ...
|
815
|
+
[info] [SUCCESSFUL ] org.apache.commons#commons-exec;1.1!commons-exec.jar (220ms)
|
816
|
+
[info] downloading http://s3pository.heroku.com/maven-central/net/java/dev/jna/jna/3.4.0/jna-3.4.0.jar ...
|
817
|
+
[info] [SUCCESSFUL ] net.java.dev.jna#jna;3.4.0!jna.jar (543ms)
|
818
|
+
[info] downloading http://s3pository.heroku.com/maven-central/net/java/dev/jna/platform/3.4.0/platform-3.4.0.jar ...
|
819
|
+
[info] [SUCCESSFUL ] net.java.dev.jna#platform;3.4.0!platform.jar (402ms)
|
820
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/apache/httpcomponents/httpcore/4.2.1/httpcore-4.2.1.jar ...
|
821
|
+
[info] [SUCCESSFUL ] org.apache.httpcomponents#httpcore;4.2.1!httpcore.jar (258ms)
|
822
|
+
[info] downloading http://s3pository.heroku.com/maven-central/commons-codec/commons-codec/1.6/commons-codec-1.6.jar ...
|
823
|
+
[info] [SUCCESSFUL ] commons-codec#commons-codec;1.6!commons-codec.jar (450ms)
|
824
|
+
[info] downloading http://s3pository.heroku.com/maven-central/net/sourceforge/htmlunit/htmlunit/2.12/htmlunit-2.12.jar ...
|
825
|
+
[info] [SUCCESSFUL ] net.sourceforge.htmlunit#htmlunit;2.12!htmlunit.jar (835ms)
|
826
|
+
[info] downloading http://s3pository.heroku.com/maven-central/xalan/xalan/2.7.1/xalan-2.7.1.jar ...
|
827
|
+
[info] [SUCCESSFUL ] xalan#xalan;2.7.1!xalan.jar (575ms)
|
828
|
+
[info] downloading http://s3pository.heroku.com/maven-central/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar ...
|
829
|
+
[info] [SUCCESSFUL ] commons-collections#commons-collections;3.2.1!commons-collections.jar (353ms)
|
830
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/apache/httpcomponents/httpmime/4.2.3/httpmime-4.2.3.jar ...
|
831
|
+
[info] [SUCCESSFUL ] org.apache.httpcomponents#httpmime;4.2.3!httpmime.jar (429ms)
|
832
|
+
[info] downloading http://s3pository.heroku.com/maven-central/net/sourceforge/htmlunit/htmlunit-core-js/2.12/htmlunit-core-js-2.12.jar ...
|
833
|
+
[info] [SUCCESSFUL ] net.sourceforge.htmlunit#htmlunit-core-js;2.12!htmlunit-core-js.jar (500ms)
|
834
|
+
[info] downloading http://s3pository.heroku.com/maven-central/net/sourceforge/nekohtml/nekohtml/1.9.18/nekohtml-1.9.18.jar ...
|
835
|
+
[info] [SUCCESSFUL ] net.sourceforge.nekohtml#nekohtml;1.9.18!nekohtml.jar (372ms)
|
836
|
+
[info] downloading http://s3pository.heroku.com/maven-central/net/sourceforge/cssparser/cssparser/0.9.9/cssparser-0.9.9.jar ...
|
837
|
+
[info] [SUCCESSFUL ] net.sourceforge.cssparser#cssparser;0.9.9!cssparser.jar (330ms)
|
838
|
+
[info] downloading http://s3pository.heroku.com/maven-central/commons-io/commons-io/2.2/commons-io-2.2.jar ...
|
839
|
+
[info] [SUCCESSFUL ] commons-io#commons-io;2.2!commons-io.jar (355ms)
|
840
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/eclipse/jetty/jetty-websocket/8.1.9.v20130131/jetty-websocket-8.1.9.v20130131.jar ...
|
841
|
+
[info] [SUCCESSFUL ] org.eclipse.jetty#jetty-websocket;8.1.9.v20130131!jetty-websocket.jar (139ms)
|
842
|
+
[info] downloading http://s3pository.heroku.com/maven-central/xalan/serializer/2.7.1/serializer-2.7.1.jar ...
|
843
|
+
[info] [SUCCESSFUL ] xalan#serializer;2.7.1!serializer.jar (290ms)
|
844
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/w3c/css/sac/1.3/sac-1.3.jar ...
|
845
|
+
[info] [SUCCESSFUL ] org.w3c.css#sac;1.3!sac.jar (214ms)
|
846
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/eclipse/jetty/jetty-util/8.1.9.v20130131/jetty-util-8.1.9.v20130131.jar ...
|
847
|
+
[info] [SUCCESSFUL ] org.eclipse.jetty#jetty-util;8.1.9.v20130131!jetty-util.jar (502ms)
|
848
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/eclipse/jetty/jetty-io/8.1.9.v20130131/jetty-io-8.1.9.v20130131.jar ...
|
849
|
+
[info] [SUCCESSFUL ] org.eclipse.jetty#jetty-io;8.1.9.v20130131!jetty-io.jar (408ms)
|
850
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/eclipse/jetty/jetty-http/8.1.9.v20130131/jetty-http-8.1.9.v20130131.jar ...
|
851
|
+
[info] [SUCCESSFUL ] org.eclipse.jetty#jetty-http;8.1.9.v20130131!jetty-http.jar (542ms)
|
852
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.jar ...
|
853
|
+
[info] [SUCCESSFUL ] org.easytesting#fest-util;1.1.6!fest-util.jar (472ms)
|
854
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-docs_2.10/2.2.0/play-docs_2.10-2.2.0.jar ...
|
855
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-docs_2.10;2.2.0!play-docs_2.10.jar (1215ms)
|
856
|
+
[info] downloading http://typesafe.artifactoryonline.com/typesafe/releases/com/typesafe/play/play-doc_2.10/1.0.3/play-doc_2.10-1.0.3.jar ...
|
857
|
+
[info] [SUCCESSFUL ] com.typesafe.play#play-doc_2.10;1.0.3!play-doc_2.10.jar (134ms)
|
858
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/pegdown/pegdown/1.4.0/pegdown-1.4.0.jar ...
|
859
|
+
[info] [SUCCESSFUL ] org.pegdown#pegdown;1.4.0!pegdown.jar (242ms)
|
860
|
+
[info] downloading http://s3pository.heroku.com/maven-central/commons-io/commons-io/2.4/commons-io-2.4.jar ...
|
861
|
+
[info] [SUCCESSFUL ] commons-io#commons-io;2.4!commons-io.jar (534ms)
|
862
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/parboiled/parboiled-java/1.1.5/parboiled-java-1.1.5.jar ...
|
863
|
+
[info] [SUCCESSFUL ] org.parboiled#parboiled-java;1.1.5!parboiled-java.jar(bundle) (228ms)
|
864
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/parboiled/parboiled-core/1.1.5/parboiled-core-1.1.5.jar ...
|
865
|
+
[info] [SUCCESSFUL ] org.parboiled#parboiled-core;1.1.5!parboiled-core.jar(bundle) (170ms)
|
866
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/ow2/asm/asm/4.1/asm-4.1.jar ...
|
867
|
+
[info] [SUCCESSFUL ] org.ow2.asm#asm;4.1!asm.jar (171ms)
|
868
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/ow2/asm/asm-tree/4.1/asm-tree-4.1.jar ...
|
869
|
+
[info] [SUCCESSFUL ] org.ow2.asm#asm-tree;4.1!asm-tree.jar (354ms)
|
870
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/ow2/asm/asm-analysis/4.1/asm-analysis-4.1.jar ...
|
871
|
+
[info] [SUCCESSFUL ] org.ow2.asm#asm-analysis;4.1!asm-analysis.jar (249ms)
|
872
|
+
[info] downloading http://s3pository.heroku.com/maven-central/org/ow2/asm/asm-util/4.1/asm-util-4.1.jar ...
|
873
|
+
[info] [SUCCESSFUL ] org.ow2.asm#asm-util;4.1!asm-util.jar (282ms)
|
874
|
+
[info] Done updating.
|
875
|
+
[info] Compiling 5 Scala sources and 3 Java sources to /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/target/scala-2.10/classes...
|
876
|
+
[success] Total time: 132 s, completed Oct 3, 2013 9:17:51 PM
|
877
|
+
[info] Packaging /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/target/scala-2.10/mywebsocketapp_2.10-1.0-SNAPSHOT-sources.jar ...
|
878
|
+
[info] Done packaging.
|
879
|
+
[info] Wrote /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/target/scala-2.10/mywebsocketapp_2.10-1.0-SNAPSHOT.pom
|
880
|
+
[info] Main Scala API documentation to /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/target/scala-2.10/api...
|
881
|
+
[info] Packaging /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/target/scala-2.10/mywebsocketapp_2.10-1.0-SNAPSHOT.jar ...
|
882
|
+
[info] Done packaging.
|
883
|
+
model contains 21 documentable templates
|
884
|
+
[info] Main Scala API documentation successful.
|
885
|
+
[info] Packaging /tmp/build_3ae9a649-b02b-41f5-ac89-f0034c39a122/target/scala-2.10/mywebsocketapp_2.10-1.0-SNAPSHOT-javadoc.jar ...
|
886
|
+
[info] Done packaging.
|
887
|
+
[success] Total time: 5 s, completed Oct 3, 2013 9:17:56 PM
|
888
|
+
-----> Dropping ivy cache from the slug
|
889
|
+
-----> Discovering process types
|
890
|
+
Procfile declares types -> (none)
|
891
|
+
Default types for Play 2.x - Java -> web
|
892
|
+
|
893
|
+
-----> Compiled slug size: 117.4MB
|
894
|
+
-----> Launching... done, v6
|
895
|
+
http://shrouded-basin-4761.herokuapp.com deployed to Heroku
|
896
|
+
|
897
|
+
To git@heroku.com:shrouded-basin-4761.git
|
898
|
+
* [new branch] master -> master
|
899
|
+
|
900
|
+
|
901
|
+
```
|
902
|
+
|
903
|
+
Congratulations! Your web app should now be up and running on Heroku.
|
904
|
+
|
905
|
+
|