运行基于Play-framework 2.0
的新项目后,我无法清除它 - 生成的员工一直在下面,
$ play new myapp
> app name: myapp
> template: java app
myapp/
├── app
│ ├── controllers
│ └── views
├── conf
├── project
└── public
├── images
├── javascripts
└── stylesheets
$ cd myapp
$ play
[myapp] run 12345
控制 d
[myapp] clean
myapp/
├── app
│ ├── controllers
│ └── views
├── conf
├── logs
├── project
│ ├── project
│ │ └── target
│ │ └── config-classes
│ └── target
│ ├── scala-2.9.1
│ │ └── sbt-0.11.2
│ │ ├── cache
│ │ │ ├── compile
│ │ │ └── update
│ │ └── classes
│ └── streams
│ ├── compile
│ │ ├── compile
│ │ │ └── $global
│ │ ├── compile-inputs
│ │ │ └── $global
│ │ ├── copy-resources
│ │ │ └── $global
│ │ ├── defined-sbt-plugins
│ │ │ └── $global
│ │ └── $global
│ │ └── $global
│ └── $global
│ ├── compilers
│ │ └── $global
│ ├── ivy-configuration
│ │ └── $global
│ ├── ivy-sbt
│ │ └── $global
│ ├── project-descriptors
│ │ └── $global
│ └── update
│ └── $global
├── public
│ ├── images
│ ├── javascripts
│ └── stylesheets
└── target
我如何成功清理它?
答案 0 :(得分:18)
play clean-all
请参阅http://www.playframework.org/documentation/2.0/PlayConsole
答案 1 :(得分:18)
clean-all
不再有效。
所有你需要的:
activator clean-files
请参阅:https://www.playframework.com/documentation/2.3.x/PlayConsole