This guide describes all steps required to migrate an IOM project from version 5.1.x to 6.0.1. The attached .md files contain all necessary reference information and are best used with Claude Code to automate the process.
Important
Use multiple commits throughout the migration and let the AI document all process steps.
There is no database migration required for the upgrade to IOM 6.0. Consider nevertheless upgrading PostgreSQL to the latest supported version 18.
The file iom6-project-migration-strategy.md describes the migration steps based on the iom-project-archetype. It uses iom6-project-migration-agent.md as its reference document.
Follow the instructions in those files to complete the basic migration of your project structure.
Project-specific code may require additional migrations beyond the basic migration. These can be identified by reviewing the full migration of the IOM core and related internal CI project.
All relevant changes are described in iom6-projectandcore_migration_ref.md.
The following dependency versions were intentionally left unchanged during the core migration, as updating them could affect test code:
Dependency | From | To |
|---|---|---|
| 5 | 6.1.0 |
| 4.6.1 | 4.11.0 |
| 1.12 | 1.18 |
Updating these versions is optional and at your discretion. In the internal CI project, the upgrade was possible without any code changes.
No code changes are required for 6.0.1, but ensure your project pom.xml contains the following two blocks.
Flyway 12.x (via iom-test-framework 8.0.0) uses Jackson 3.x internally. Jackson 3.x requires jackson-annotations 2.21, but the WildFly BOM pins an older version, which causes an ObjectMapper static init failure at runtime. Add this to your <dependencies> section:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.21</version>
</dependency>
Add this to your <plugins> section to keep the target/ directory intact so a devenv-4-iom bind-mount survives mvn clean:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}</directory>
<includes>
<include>**/*</include>
</includes>
<followSymlinks>false</followSymlinks>
</fileset>
</filesets>
</configuration>
</plugin>
All projects related to the IOM platform have also been upgraded to work with the new release:
Project | Version | Repository |
|---|---|---|
iom-blueprint-project | 1.8.0 | |
iom-project-archetype | 1.7.0 | |
devenv-4-iom | 3.0.0 | |
iom-test-framework | 8.0.0 | |
iom-partner-devops | 1.7.0 |
The information provided in the Knowledge Base may not be applicable to all systems and situations. Intershop Communications will not be liable to any party for any direct or indirect damages resulting from the use of the Customer Support section of the Intershop Corporate Website, including, without limitation, any lost profits, business interruption, loss of programs or other data on your information handling system.