清理基于Play框架的项目

时间:2012-03-23 14:31:43

标签: java scala playframework sbt

运行基于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

我如何成功清理它?

2 个答案:

答案 0 :(得分:18)

答案 1 :(得分:18)

clean-all不再有效。
所有你需要的:

activator clean-files

请参阅:https://www.playframework.com/documentation/2.3.x/PlayConsole