mirror of https://github.com/sbt/sbt.git
18 lines
286 B
Plaintext
18 lines
286 B
Plaintext
# Should compile OK without the plugin
|
|
> app/compile
|
|
|
|
# Publish plugin locally
|
|
> plugin/publishLocal
|
|
|
|
# Enable plugin
|
|
$ copy-file changes/build.sbt build.sbt
|
|
> reload
|
|
|
|
# Should compile with the plugin
|
|
> clean
|
|
> appOk/compile
|
|
|
|
# Should NOT compile with the plugin
|
|
> clean
|
|
-> app/compile
|