As long as you have retained the "archetype" project structure, and are using Maven, you can upgrade by changing the parent POM.
Find all the references to broadleaf dependencies in your root pom.xml and change the version from 1.5.2-GA to 1.5.3-GA.
Even better, introduce a pom property (broadleaf.version) and reference that in all the broadleaf dependencies. This way you only have one place to change when upgrading.
e.g.
Code: Select all
<properties>
<broadleaf.version>1.5.3-GA</broadleaf.version>
</properties>
...
<dependency>
<groupId>org.broadleafcommerce</groupId>
<artifactId>broadleaf-framework</artifactId>
<version>${broadleaf.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
... more broadleaf dependencies
--
Based on the JIRA entries assigned to 1.5.3 (
http://www.broadleafcommerce.org/jira/b ... sion/10071) it looks like it should be a drop-in replacement (with no schema updates).