belgif-rest-problem-spring-boot-3-it
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.belgif.rest.problem</groupId> <artifactId>belgif-rest-problem-spring-boot-3-it</artifactId> <version>0.16.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.belgif.rest.problem</groupId> <artifactId>belgif-rest-problem-it</artifactId> <version>0.16.0</version> </parent> <artifactId>belgif-rest-problem-spring-boot-3-it</artifactId> <version>0.16.0</version> <packaging>war</packaging> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${version.spring.boot.3}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.github.belgif.rest.problem</groupId> <artifactId>belgif-rest-problem-spring-boot-3</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.belgif.rest.problem</groupId> <artifactId>belgif-rest-problem-it-common</artifactId> <version>${project.version}</version> <classifier>jakarta</classifier> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>com.atlassian.oai</groupId> <artifactId>swagger-request-validator-spring-webmvc</artifactId> <version>2.44.1</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.openapitools</groupId> <artifactId>openapi-generator-maven-plugin</artifactId> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <inputSpec>${project.basedir}/../belgif-rest-problem-it-common/src/main/resources/openapi.yaml</inputSpec> <generatorName>spring</generatorName> <apiPackage>io.github.belgif.rest.problem.openapi.validation.sb3.api</apiPackage> <modelPackage>io.github.belgif.rest.problem.openapi.validation.sb3.model</modelPackage> <openapiNormalizer>REF_AS_PARENT_IN_ALLOF=true</openapiNormalizer> <generateSupportingFiles>false</generateSupportingFiles> <configOptions> <useSpringBoot3>true</useSpringBoot3> <interfaceOnly>true</interfaceOnly> <skipDefaultInterface>true</skipDefaultInterface> <openApiNullable>false</openApiNullable> <annotationLibrary>none</annotationLibrary> <documentationProvider>none</documentationProvider> <useBeanValidation>false</useBeanValidation> </configOptions> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>