Ivy allows custom configurations (e.g., integration-test , fat-jar ). Maven does not support custom scopes natively. During conversion, you must decide how to map these custom Ivy configurations—often into the test scope or by creating separate Maven profiles.
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>5.3.20</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> convert ivy to maven