openapi-generics-server-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.blueprint-platform</groupId>
<artifactId>openapi-generics-server-starter</artifactId>
<version>1.0.1</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>
<groupId>io.github.blueprint-platform</groupId>
<artifactId>openapi-generics-server-starter</artifactId>
<version>1.0.1</version>
<name>openapi-generics-server-starter</name>
<description>Spring Boot starter for generics-aware OpenAPI projection.
Provides contract-to-OpenAPI translation while preserving generic type semantics.</description>
<url>https://github.com/blueprint-platform/openapi-generics</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>bsayli</id>
<name>Baris Sayli</name>
<url>https://github.com/bsayli</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/blueprint-platform/openapi-generics.git</connection>
<developerConnection>scm:git:ssh://git@github.com:blueprint-platform/openapi-generics.git</developerConnection>
<tag>v1.0.1</tag>
<url>https://github.com/blueprint-platform/openapi-generics</url>
</scm>
<dependencies>
<dependency>
<groupId>io.github.blueprint-platform</groupId>
<artifactId>openapi-generics-contract</artifactId>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>3.5.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>3.5.14</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-common</artifactId>
<version>2.8.17</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.2.18</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>