emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/projectile 90da545aa8 1/2: [Fix #1750] Fix src-dir and tes


From: ELPA Syncer
Subject: [nongnu] elpa/projectile 90da545aa8 1/2: [Fix #1750] Fix src-dir and test-dir for Maven projects
Date: Tue, 8 Feb 2022 07:58:50 -0500 (EST)

branch: elpa/projectile
commit 90da545aa86e0d0444c5f9a542bf15b9f20e4cbc
Author: Dmitry Polienko <polienkodv@yandex-team.ru>
Commit: Bozhidar Batsov <bozhidar@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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]