Hi,
I am using the below dependencies and generate it. It is working fine without any modifications
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- Spring Boot Web (REST APIs) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Validation (for @Valid, @NotNull etc.) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<!-- Jackson (JSON handling - usually included, but explicit is safe) -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- YAML support -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
</dependency>
<!-- OpenAPI UI (to test APIs in browser) -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.5.0</version>
</dependency>
<!-- Lombok (optional but useful for POJOs) -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
------------------------------
Kumaresan Palanisamy
OMANTEL
------------------------------
Original Message:
Sent: Jul 06, 2026 11:21
From: Rune Gellein
Subject: Issue generating java models for TMF 637 Product Inventory using openapi-codegen
Hi,
I was looking at this briefly as well and I am sorry to say I haven't solved it either (different errors at the moment tough). I assume it is a matter of resolving dependencies with correct versions and the plugin settings etc.
Is it a web page available that details the necessary maven setup in order to generate this model?
regards,
Rune Gellein
BT plc
------------------------------
Rune Gellein
BT Group plc
------------------------------