identity-hash-provider-pbkdf2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.carbon.identity.hash.provider.pbkdf2</groupId> <artifactId>identity-hash-provider-pbkdf2</artifactId> <version>0.1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~ 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"> <parent> <groupId>org.wso2</groupId> <artifactId>wso2</artifactId> <version>1.4</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.wso2.carbon.identity.hash.provider.pbkdf2</groupId> <artifactId>identity-hash-provider-pbkdf2</artifactId> <version>0.1.4</version> <packaging>pom</packaging> <name>WSO2 Carbon PBKDF2 module</name> <url>http://wso2.org</url> <scm> <connection>scm:git:https://github.com/wso2-extensions/identity-hash-provider-pbkdf2.git</connection> <developerConnection>scm:git:https://github.com/wso2-extensions/identity-hash-provider-pbkdf2.git</developerConnection> <url>https://github.com/wso2-extensions/identity-hash-provider-pbkdf2.git</url> <tag>v0.1.4</tag> </scm> <modules> <module>components/org.wso2.carbon.identity.hash.provider.pbkdf2</module> <module>features/org.wso2.carbon.identity.hash.provider.pbkdf2.server.feature</module> <module>utility/pbkdf2-hash-generator</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.ds-annotations</artifactId> <version>${org.apache.felix.scr.ds-annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.wso2.carbon</groupId> <artifactId>org.wso2.carbon.user.core</artifactId> <version>${carbon.kernel.version}</version> </dependency> <dependency> <groupId>org.eclipse.osgi</groupId> <artifactId>org.eclipse.osgi.services</artifactId> <version>${org.eclipse.osgi.services.version}</version> </dependency> <dependency> <groupId>org.eclipse.osgi</groupId> <artifactId>org.eclipse.osgi</artifactId> <version>${org.eclipse.osgi.version}</version> </dependency> <dependency> <groupId>org.ops4j.pax.logging</groupId> <artifactId>pax-logging-api</artifactId> <version>${pax-logging-api.version}</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${commons.logging.version}</version> </dependency> <dependency> <groupId>org.wso2.carbon.identity.hash.provider.pbkdf2</groupId> <artifactId>org.wso2.carbon.identity.hash.provider.pbkdf2</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.wso2.carbon.identity.hash.provider.pbkdf2</groupId> <artifactId>org.wso2.carbon.identity.hash.provider.pbkdf2.server.feature</artifactId> <version>${project.version}</version> <type>zip</type> </dependency> <!-- Testing related dependencies --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.agent</artifactId> <classifier>runtime</classifier> <version>${jacoco.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-testng</artifactId> <version>${org.powermock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <version>${org.powermock.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <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> <SCM-Revision>${buildNumber}</SCM-Revision> </instructions> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>${maven.buildnumber.plugin.version}</version> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>${spotbugs-maven-plugin.version}</version> <configuration> <effort>Max</effort> <threshold>High</threshold> <failOnError>true</failOnError> <maxHeap>1024</maxHeap> <plugins> <plugin> <groupId>com.h3xstream.findsecbugs</groupId> <artifactId>findsecbugs-plugin</artifactId> <version>${findsecbugs-plugin.version}</version> </plugin> </plugins> </configuration> <executions> <execution> <id>analyze-compile</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven.checkstyleplugin.version}</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <configuration> <configLocation> https://raw.githubusercontent.com/wso2/code-quality-tools/v1.3/checkstyle/checkstyle.xml </configLocation> <suppressionsLocation> https://raw.githubusercontent.com/wso2/code-quality-tools/v1.3/checkstyle/suppressions.xml </suppressionsLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <inherited>true</inherited> <configuration> <encoding>UTF-8</encoding> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <preparationGoals>clean install</preparationGoals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> </build> <properties> <import.package.version.commons.logging>[1.2,2)</import.package.version.commons.logging> <osgi.framework.imp.pkg.version.range>[1.7,2)</osgi.framework.imp.pkg.version.range> <osgi.service.component.imp.pkg.version.range>[1.2,2)</osgi.service.component.imp.pkg.version.range> <org.apache.felix.scr.ds-annotations.version>1.2.10</org.apache.felix.scr.ds-annotations.version> <carbon.kernel.version>4.6.3-m4</carbon.kernel.version> <carbon.kernel.feature.version>4.6.3</carbon.kernel.feature.version> <org.eclipse.osgi.services.version>3.3.100.v20130513-1956</org.eclipse.osgi.services.version> <org.eclipse.osgi.version>3.9.1.v20130814-1242</org.eclipse.osgi.version> <pax-logging-api.version>1.11.0</pax-logging-api.version> <carbon.kernel.package.import.version.range>[4.6.2, 5.0.0)</carbon.kernel.package.import.version.range> <commons.logging.version>1.2</commons.logging.version> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-bundle-plugin.version>3.2.0</maven-bundle-plugin.version> <maven.buildnumber.plugin.version>1.4</maven.buildnumber.plugin.version> <maven.checkstyleplugin.version>3.1.0</maven.checkstyleplugin.version> <carbon.p2.plugin.version>5.1.2</carbon.p2.plugin.version> <!-- Unit test versions --> <testng.version>6.9.10</testng.version> <jacoco.version>0.8.2</jacoco.version> <org.powermock.version>1.7.4</org.powermock.version> <!-- Spotbugs versions --> <spotbugs-maven-plugin.version>4.1.3</spotbugs-maven-plugin.version> <findsecbugs-plugin.version>1.10.1</findsecbugs-plugin.version> </properties> </project>