From 6c29a5779e52d5063a20f6bd0db59408e1d2466e Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 28 Feb 2023 16:36:32 +0100 Subject: [PATCH] Fix .gitignore pattern for Maven "target" folders Rationale: changes in org.springframework.aop.framework.autoproxy.target were previously ignored since the "target" package was ignored by the previous "eager" pattern for "target" folders. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e21dcb18ebc..696c333f41d 100644 --- a/.gitignore +++ b/.gitignore @@ -29,7 +29,7 @@ spring-test/test-output/ # Maven artifacts pom.xml -target/ +/target/ # Eclipse artifacts, including WTP generated manifests bin