Skip to content

Commit

Permalink
Add Bloop Configuration
Browse files Browse the repository at this point in the history
Bloop is a Scala Build Server. Projects using bloop will likely have another build system referenced locally, e.g. a `build.sbt` file, but the ideal method to compile/test will be through the `bloop` command to the `bloop` daemon.
  • Loading branch information
isomarcte authored and bbatsov committed Apr 15, 2019
1 parent 919896e commit b54be3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* [#1019](https://github.com/bbatsov/projectile/issues/1019): Jump to a test named the same way but in a different directory.
* [#982](https://github.com/bbatsov/projectile/issues/982) Add heuristic for projectile-find-matching-test
* Support a list of functions for `related-files-fn` options and helper functions
* [#1405](https://github.com/bbatsov/projectile/pull/1405) Add Bloop Scala build server project detection

### Bugs fixed

Expand Down
3 changes: 3 additions & 0 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -2650,6 +2650,9 @@ test/impl/other files as below:
:test-suffix "_test")
(projectile-register-project-type 'clojure-cli '("deps.edn")
:test-suffix "_test")
(projectile-register-project-type 'bloop '(".bloop")
:compile "bloop compile root"
:test "bloop test root")
;; Ruby
(projectile-register-project-type 'ruby-rspec '("Gemfile" "lib" "spec")
:compile "bundle exec rake"
Expand Down

0 comments on commit b54be3e

Please sign in to comment.