stride-client-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.atlassian.stride</groupId> <artifactId>stride-client-api</artifactId> <version>3.0.3</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> <artifactId>stride-client-api</artifactId> <version>3.0.3</version> <parent> <groupId>com.atlassian.stride</groupId> <artifactId>stride-api-java-parent</artifactId> <version>3.0.3</version> <relativePath>..</relativePath> </parent> <dependencies> <dependency> <groupId>com.atlassian.stride</groupId> <artifactId>stride-auth</artifactId> <version>3.0.3</version> </dependency> <dependency> <groupId>com.atlassian.stride</groupId> <artifactId>stride-common</artifactId> <version>3.0.3</version> </dependency> <dependency> <groupId>com.atlassian.stride</groupId> <artifactId>adf-builder</artifactId> <version>3.0.3</version> </dependency> <!-- Jackson --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </dependency> <!-- Apache HTTP Client (Allows PATCH requests) --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> </dependency> <!-- Logging --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <!-- Others --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> </dependencies> <!-- https://www.testwithspring.com/lesson/running-integration-tests-with-maven/ --> <profiles> <!-- The Configuration of the integration-test profile --> <profile> <id>integration-test</id> <properties> <!-- Specifies the build.profile.id property that must be equal than the name of the directory that contains the profile specific configuration file. Because the name of the directory that contains the configuration file of the integration-test profile is integration-test, we must set the value of the build.profile.id property to integration-test. --> <build.profile.id>integration-test</build.profile.id> <!-- Only integration tests are run when the integration-test profile is active --> <skip.integration.tests>false</skip.integration.tests> <skip.unit.tests>true</skip.unit.tests> </properties> </profile> </profiles> </project>