identity-serializer-fst
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.carbon.extension.identity.serializer.fst</groupId> <artifactId>identity-serializer-fst</artifactId> <version>1.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org). ~ ~ WSO2 Inc. licenses this file to you under the Apache License, ~ Version 2.0 (the "License"); you may not use this file except ~ in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. --> <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> <groupId>org.wso2</groupId> <artifactId>wso2</artifactId> <version>1.4</version> </parent> <scm> <url>https://github.com/wso2-extensions/identity-serializer-fst.git</url> <developerConnection>scm:git:https://github.com/wso2-extensions/identity-serializer-fst.git</developerConnection> <connection>scm:git:https://github.com/wso2-extensions/identity-serializer-fst.git</connection> <tag>v1.4.0</tag> </scm> <groupId>org.wso2.carbon.extension.identity.serializer.fst</groupId> <artifactId>identity-serializer-fst</artifactId> <version>1.4.0</version> <modules> <module>org.wso2.carbon.identity.serializer.fst</module> </modules> <packaging>pom</packaging> <name>FST based session serializer</name> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <version>${maven.scr.plugin.version}</version> <executions> <execution> <id>generate-scr-scrdescriptor</id> <goals> <goal>scr</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven.bundle.plugin.version}</version> <extensions>true</extensions> <configuration> <obrRepository>NONE</obrRepository> <instructions /> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencyManagement> <dependencies> <dependency> <groupId>de.ruedigermoeller</groupId> <artifactId>fst</artifactId> <version>${de.ruedigermoeller.fst.version}</version> </dependency> <dependency> <groupId>org.wso2.carbon.identity.framework</groupId> <artifactId>org.wso2.carbon.identity.application.authentication.framework</artifactId> <version>${carbon.identity.framework.version}</version> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>${org.objenesis.version}</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${org.mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.agent</artifactId> <classifier>runtime</classifier> <version>${jacoco.version}</version> </dependency> </dependencies> </dependencyManagement> <properties> <org.objenesis.version>3.2</org.objenesis.version> <de.ruedigermoeller.fst.version>2.56</de.ruedigermoeller.fst.version> <carbon.identity.framework.package.import.version.range>[5.20.136,7.0.0) </carbon.identity.framework.package.import.version.range> <org.mockito.version>1.10.19</org.mockito.version> <maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version> <jacoco.version>0.8.2</jacoco.version> <com.fasterxml.jackson.package.import.version.range>[2.8,3)</com.fasterxml.jackson.package.import.version.range> <commons-logging.osgi.version.range>[1.2,2)</commons-logging.osgi.version.range> <carbon.identity.framework.version>5.20.136</carbon.identity.framework.version> <carbon.identity.application.authenticator.basicauth.imp.pkg.version.range>[6.3,7) </carbon.identity.application.authenticator.basicauth.imp.pkg.version.range> <identity.oidc.session.package.import.version.range>[6.7,7)</identity.oidc.session.package.import.version.range> <osgi.framework.imp.pkg.version.range>[1.7.0, 2.0.0)</osgi.framework.imp.pkg.version.range> <osgi.service.component.imp.pkg.version.range>[1.2.0, 2.0.0)</osgi.service.component.imp.pkg.version.range> <maven.scr.plugin.version>1.24.0</maven.scr.plugin.version> <maven.bundle.plugin.version>2.4.0</maven.bundle.plugin.version> <testng.version>6.9.10</testng.version> <org.jacoco.version>0.8.3</org.jacoco.version> </properties> </project>