branch: elpa/projectile commit 90da545aa86e0d0444c5f9a542bf15b9f20e4cbc Author: Dmitry Polienko <polienk...@yandex-team.ru> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
[Fix #1750] Fix src-dir and test-dir for Maven projects --- CHANGELOG.md | 1 + projectile.el | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4f3f910db..f93e3bc711 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ * [#1514](https://github.com/bbatsov/projectile/issues/1514): Fix `projectile-ag` global ignores not in effect. * [#1714](https://github.com/bbatsov/projectile/issues/1714): Fix `projectile-discover-projects-in-directory` not interactive. * [#1734](https://github.com/bbatsov/projectile/pull/1734): Make `projectile--find-matching-test` use `src-dir/test-dir` properties. +* [#1750](https://github.com/bbatsov/projectile/issues/1750): Fix source and test directories for Maven projects. ### Changes diff --git a/projectile.el b/projectile.el index cfe6a94142..b8d2e278fd 100644 --- a/projectile.el +++ b/projectile.el @@ -3116,8 +3116,8 @@ a manual COMMAND-TYPE command is created with :compile "mvn -B clean install" :test "mvn -B test" :test-suffix "Test" - :src-dir "main/src/" - :test-dir "main/test/") + :src-dir "src/main/" + :test-dir "src/test/") (projectile-register-project-type 'gradle '("build.gradle") :project-file "build.gradle" :compile "gradle build"