diff --git a/pom.xml b/pom.xml
index d9b79897e..09e4330cf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4.0.0
org.springframework.samples
- org.springframework.samples.petclinic
+ petclinic-classic
petclinic-classic
war
1.0.0-SNAPSHOT
@@ -43,6 +43,7 @@
javax.servlet
com.springsource.javax.servlet.jsp.jstl
1.2.0
+ provided
javax.xml.bind
@@ -68,6 +69,7 @@
org.apache.taglibs
com.springsource.org.apache.taglibs.standard
1.1.2
+ provided
org.aspectj
diff --git a/src/main/webapp/META-INF/hsqldb/dropTables.txt b/src/main/resources/hsqldb/dropTables.txt
similarity index 100%
rename from src/main/webapp/META-INF/hsqldb/dropTables.txt
rename to src/main/resources/hsqldb/dropTables.txt
diff --git a/src/main/webapp/META-INF/hsqldb/initDB.txt b/src/main/resources/hsqldb/initDB.txt
similarity index 100%
rename from src/main/webapp/META-INF/hsqldb/initDB.txt
rename to src/main/resources/hsqldb/initDB.txt
diff --git a/src/main/webapp/META-INF/hsqldb/populateDB.txt b/src/main/resources/hsqldb/populateDB.txt
similarity index 100%
rename from src/main/webapp/META-INF/hsqldb/populateDB.txt
rename to src/main/resources/hsqldb/populateDB.txt
diff --git a/src/main/resources/jdbc.properties b/src/main/resources/jdbc.properties
index e039cdf1b..47537f9cd 100644
--- a/src/main/resources/jdbc.properties
+++ b/src/main/resources/jdbc.properties
@@ -23,9 +23,9 @@ jdbc.password=
# Properties that control the population of schema and data for a new data source
jdbc.populate=true
-jdbc.schemaLocation=classpath:/META-INF/hsqldb/initDB.txt
-jdbc.dataLocation=classpath:/META-INF/hsqldb/populateDB.txt
-jdbc.dropLocation=classpath:/META-INF/hsqldb/dropTables.txt
+jdbc.schemaLocation=classpath:hsqldb/initDB.txt
+jdbc.dataLocation=classpath:hsqldb/populateDB.txt
+jdbc.dropLocation=classpath:hsqldb/dropTables.txt
# Property that determines which Hibernate dialect to use
# (only applied with "applicationContext-hibernate.xml")