multi-tenant-oauth2-resource-server-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.mzlnk.springframework</groupId>
<artifactId>multi-tenant-oauth2-resource-server-spring-boot-starter</artifactId>
<version>1.0.4-beta</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>
<groupId>io.mzlnk.springframework</groupId>
<artifactId>multi-tenant-oauth2-resource-server-spring-boot-starter</artifactId>
<version>1.0.4-beta</version>
<packaging>jar</packaging>
<name>multi-tenant-oauth2-resource-server-spring-boot-starter</name>
<description>Spring Boot starter for multi-tenant OAuth2 resource server</description>
<url>https://github.com/mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter</url>
<inceptionYear>2021</inceptionYear>
<licenses>
<license>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>mzlnk</id>
<name>Marcin Zielonka</name>
<email>zielonka.marcin@protonmail.com</email>
<url>mzlnk.io</url>
<roles>
<role>developer</role>
</roles>
<timezone>Europe/Warsaw</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter.git
</connection>
<developerConnection>
scm:git:ssh://github.com:mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter.git
</developerConnection>
<url>https://github.com/mzlnk/multi-tenant-oauth2-resource-server-spring-boot-starter/tree/master</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<maven.compiler.source>15</maven.compiler.source>
<maven.compiler.target>15</maven.compiler.target>
<oauth2-oidc-sdk.version>6.23</oauth2-oidc-sdk.version>
<multi-tenant-oauth2-resource-server-spring-boot-autoconfigure.version>1.0.4-beta</multi-tenant-oauth2-resource-server-spring-boot-autoconfigure.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-oauth2-jose</artifactId>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
<version>${oauth2-oidc-sdk.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>io.mzlnk.springframework</groupId>
<artifactId>multi-tenant-oauth2-resource-server-spring-boot-autoconfigure</artifactId>
<version>${multi-tenant-oauth2-resource-server-spring-boot-autoconfigure.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>