Mitesh Ukate
Mitesh Ukate

Reputation: 173

How to add user library as dependency to play framework?

I am trying to add user library to the project, but while running application showing the following errors. (may be it should be added to sbt files somehow)?
/home/thrymr/workspace/androidBackendWorkspace/RideBackend/app/pubnub/Publisher.java:7: package com.pubnub.api does not exist [error] com.pubnub.api.Callback [error] trying to add pubnub jars file.

Upvotes: 2

Views: 234

Answers (1)

cello
cello

Reputation: 5486

Have a look at https://www.playframework.com/documentation/2.4.x/SBTDependencies. You can add additional libraries you need to build.sbt to the libraryDependencies object.

Upvotes: 2

Related Questions