scim2-sdk-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.unboundid.product.scim2</groupId> <artifactId>scim2-sdk-client</artifactId> <version>4.0.0</version> </dependency>
<!-- ~ Copyright 2015-2025 Ping Identity Corporation ~ ~ This program is free software; you can redistribute it and/or modify ~ it under the terms of the GNU General Public License (GPLv2 only) ~ or the terms of the GNU Lesser General Public License (LGPLv2.1 only) ~ as published by the Free Software Foundation. ~ ~ This program is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ~ GNU General Public License for more details. ~ ~ You should have received a copy of the GNU General Public License ~ along with this program; if not, see <http://www.gnu.org/licenses>. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>scim2-parent</artifactId> <groupId>com.unboundid.product.scim2</groupId> <version>4.0.0</version> </parent> <artifactId>scim2-sdk-client</artifactId> <packaging>jar</packaging> <name>UnboundID SCIM2 SDK Client</name> <description> The UnboundID SCIM 2 SDK is a comprehensive Java library that supports the SCIM protocol and communication with SCIM services. This SDK assists with managing requests, responses, and errors, and it also offers support for SCIM filter expressions, attribute paths, and CRUD operations on SCIM data. See https://simplecloud.info for more information. This package contains client classes for building SCIM 2 requests and for accessing resources from SCIM 2 service providers. </description> <inceptionYear>2015</inceptionYear> <url>https://github.com/pingidentity/scim2</url> <scm> <url>https://github.com/pingidentity/scim2</url> <connection>scm:git:https://github.com/pingidentity/scim2</connection> </scm> <organization> <name>Ping Identity Corporation</name> <url>https://www.pingidentity.com</url> </organization> <developers> <developer> <id>unboundid</id> <name>UnboundID Corp.</name> <email>support@pingidentity.com</email> </developer> </developers> <licenses> <license> <name>GNU General Public License version 2 (GPLv2)</name> <url>http://www.gnu.org/licenses/gpl-2.0.html</url> </license> <license> <name>GNU Lesser General Public License version 2.1 (LGPLv2.1)</name> <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> </license> <license> <name>UnboundID SCIM2 SDK Free Use License</name> <url>https://github.com/pingidentity/scim2</url> <comments>This license is available in the source code repository at the provided URL.</comments> </license> </licenses> <properties> <build.product.name>${project.name}</build.product.name> <build.product.short.name>${project.artifactId}</build.product.short.name> <build.version>${project.version}</build.version> <javadoc.excludedPackageNames>com.unboundid.scim2.common.utils</javadoc.excludedPackageNames> <main.basedir>${project.parent.basedir}</main.basedir> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <executions> <execution> <id>create-revision-number</id> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> <execution> <id>create-timestamp</id> <phase>initialize</phase> <goals> <goal>create-timestamp</goal> </goals> <configuration> <timestampFormat>yyyy-MM-dd HH:mm:ss</timestampFormat> <timestampPropertyName>build.timestamp</timestampPropertyName> </configuration> </execution> </executions> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>target/java-gen</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <!-- A jar of the project sources is required for publishing to Maven Central. --> <goals> <goal>jar</goal> </goals> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>create-test-jar</id> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>create-javadoc-archive</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <quiet>true</quiet> <linksource>true</linksource> <excludePackageNames>${javadoc.excludedPackageNames}</excludePackageNames> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.unboundid.product.scim2</groupId> <artifactId>scim2-sdk-common</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.jakarta.rs</groupId> <artifactId>jackson-jakarta-rs-json-provider</artifactId> </dependency> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> <version>${jersey.version}</version> <scope>test</scope> </dependency> </dependencies> </project>