spring-boot-starter-scim2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.bettercloud</groupId> <artifactId>spring-boot-starter-scim2</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.bettercloud</groupId> <artifactId>spring-boot-starter-scim2</artifactId> <version>1.0.0</version> <name>SCIM 2.0 SDK for Spring</name> <description>SCIM 2.0 SDK for Spring</description> <url>https://github.com/BetterCloud/scim2</url> <licenses> <license> <name>MIT</name> <url>https://github.com/BetterCloud/scim2/blob/master/README.md</url> </license> </licenses> <developers> <developer> <id>daniel-lynch</id> <name>Daniel Lynch</name> <email>dantlynch@gmail.com</email> </developer> </developers> <scm> <connection>https://github.com/BetterCloud/scim2.git</connection> <developerConnection>https://github.com/BetterCloud/scim2.git</developerConnection> <url>https://github.com/BetterCloud/scim2</url> </scm> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>20.0</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>tomcat-annotations-api</artifactId> <groupId>org.apache.tomcat</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.bettercloud</groupId> <artifactId>scim2-sdk-common</artifactId> <version>1.0.0</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>tomcat-annotations-api</artifactId> <groupId>org.apache.tomcat</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>tomcat-annotations-api</artifactId> <groupId>org.apache.tomcat</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.1.3.RELEASE</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>