Skip to content

Commit

Permalink
[Fix #1750] Fix src-dir and test-dir for Maven projects
Browse files Browse the repository at this point in the history
  • Loading branch information
nigredo-tori authored and bbatsov committed Feb 8, 2022
1 parent df3d73e commit 90da545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 90da545

Please sign in to comment.