HamedFathi
HamedFathi

Reputation: 3979

How can I disable auto updating PlayFramework Activator commands when create project?

When I want to use activator command for create project for each command it try update itself for example

when write (in CMD)

I want to create my project with current and offline libraries (I want to work with latest offline distribution only)

enter image description here

Upvotes: 3

Views: 884

Answers (2)

M-Razavi
M-Razavi

Reputation: 3467

To disable check update while you create a new project on Play framework, you can use these parameters like below:

 activator -Dactivator.checkForUpdates=false -Dactivator.checkForTemplateUpdates=false new

To be offline permanently:
1- If you installed SBT, add these parameters in .../conf/sbtconfig.txt

-Dactivator.checkForUpdates=false
-Dactivator.checkForTemplateUpdates=false

2- If you didn't install SBT you can add parameters to %UserProfile%\.activator\activatorconfig.txt or %UserProfile%\.activator\%APP_VERSION%\activatorconfig.txt

Upvotes: 1

Rakesh Chouhan
Rakesh Chouhan

Reputation: 1230

Resolver can help you in this situation

resolvers += ( "Local Maven Repository" at "file:///"+Path.userHome.absolutePath+"/.m2/repository" )

please refer this link

https://www.playframework.com/documentation/2.3.x/SBTDependencies

Upvotes: 1

Related Questions