From f6f05acc12d1dc4e6cc2544d017ab1f3332efd61 Mon Sep 17 00:00:00 2001 From: Fernando Bellas Permuy Date: Tue, 28 Apr 2009 19:26:17 +0200 Subject: [PATCH] ItEr06S04ArquitecturaServidorItEr06S04: Fixed patterns of resources to filter. Now, by default, only resources matching "*spring-config.xml" or "*hibernate.cfg.xml" located directly on "src/main/resources", or "*spring-config-test.xml" or "*hibernate-test.cfg.xml" located directly on "src/test/resources" are filtered. To apply the patch, rember to execute "mvn clean install" from root directory. --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index fc7b317cf..a5c684454 100644 --- a/pom.xml +++ b/pom.xml @@ -255,8 +255,8 @@ src/main/resources true - *spring-config*.xml - *hibernate.cfg*.xml + *spring-config.xml + *hibernate.cfg.xml @@ -285,8 +285,8 @@ src/test/resources true - *spring-config*.xml - *hibernate.cfg*.xml + *spring-config-test.xml + *hibernate-test.cfg.xml