LoginSignup
7
8

More than 5 years have passed since last update.

PlayFrameworkのprojectをアップデートする

Last updated at Posted at 2014-03-10

はじめに

  • play frameworkのアップデートをして、プロジェクトも新しいバージョンで動かしたいときの方法

前提

  • PlayFramework 2.2.0 => 2.2.2へアップデート

方法

PlayFrameworkのupdate

play-2.2.2
$ wget http://downloads.typesafe.com/play/2.2.2/play-2.2.2.zip
$ unzip play-2.2.2.zip
$ echo 'export PATH=/path/to/play-2.2.2:$PATH' >> ~/.bashrc
  • plugins.sbtを編集
plugins.sbt
// project/plugins.sbt
addSbtPlugin("play" % "sbt-plugin" % "2.2.2")
  • play clean
clean
$ play clean
7
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
8