sample-springdoc-openapi-oauth2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>sample-springdoc-openapi-oauth2</artifactId>
<version>3.1.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>springdoc-openapi-demos</artifactId> <groupId>org.springdoc</groupId> <version>3.1.5</version> </parent> <packaging>pom</packaging> <artifactId>sample-springdoc-openapi-oauth2</artifactId> <properties> <keycloak.version>11.0.2</keycloak.version> <!-- check keycloak-dependencies-server-all effective pom --> <infinispan.version>10.1.8.Final</infinispan.version> <resteasy.version>3.12.1.Final</resteasy.version> </properties> <modules> <module>oauth-authorization-server</module> <module>oauth-resource-server</module> </modules> <dependencies> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*LiveTest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>