identity-outbound-oauth-naver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.carbon.identity.outbound.auth.oauth2</groupId> <artifactId>identity-outbound-oauth-naver</artifactId> <version>1.0.2</version> </dependency>
<?xml version="1.0"?> <!-- ~ Copyright (c) 2020, 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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.wso2</groupId> <artifactId>wso2</artifactId> <version>1.4</version> </parent> <groupId>org.wso2.carbon.identity.outbound.auth.oauth2</groupId> <artifactId>identity-outbound-oauth-naver</artifactId> <packaging>pom</packaging> <version>1.0.2</version> <url>http://wso2.org</url> <scm> <url>https://github.com/wso2-extensions/identity-outbound-auth-naver.git</url> <developerConnection>scm:git:https://github.com/wso2-extensions/identity-outbound-auth-naver.git</developerConnection> <connection>scm:git:https://github.com/wso2-extensions/identity-outbound-auth-naver.git</connection> <tag>v1.0.2</tag> </scm> <modules> <module>componenets/org.wso2.carbon.identity.application.authenticator.naver</module> </modules> <dependencyManagement> <dependencies> <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.wso2.orbit.org.apache.oltu.oauth2</groupId> <artifactId>oltu</artifactId> <version>${oltu.version}</version> </dependency> </dependencies> </dependencyManagement> <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> </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>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <configuration> <excludes> <!--Exception classes and IdentityConstants in this component are used not used within this--> <!--component, but in dependent identity components, hence excluding in coverage reports--> <exclude>**/*Exception.class</exclude> <exclude>**/*Constants*.class</exclude> <exclude>**/*Component.class</exclude> <exclude>**/*Holder.class</exclude> </excludes> </configuration> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-prepare-agent-integration</id> <goals> <goal>prepare-agent-integration</goal> </goals> </execution> <execution> <id>default-report</id> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-report-integration</id> <goals> <goal>report-integration</goal> </goals> </execution> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule implementation="org.jacoco.maven.RuleConfiguration"> <element>BUNDLE</element> <limits> <limit implementation="org.jacoco.report.check.Limit"> <counter>COMPLEXITY</counter> <value>COVEREDRATIO</value> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <preparationGoals>clean install</preparationGoals> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <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.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> </plugin> </plugins> </build> <properties> <oauth2.outbound.version>1.0.1</oauth2.outbound.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <oltu.version>1.0.0.wso2v3</oltu.version> <carbon.identity.framework.version>5.17.5</carbon.identity.framework.version> <apache.felix.scr.ds.annotations.version>1.2.4</apache.felix.scr.ds.annotations.version> <maven.scr.plugin.version>1.24.0</maven.scr.plugin.version> <maven.bundle.plugin.version>3.2.0</maven.bundle.plugin.version> <maven.compiler.plugin.version>2.3.1</maven.compiler.plugin.version> <maven.buildnumber.plugin.version>1.4</maven.buildnumber.plugin.version> <osgi.service.component.imp.pkg.version.range>[1.2.0, 2.0.0)</osgi.service.component.imp.pkg.version.range> <identity.framework.package.import.version.range>[5.14.0, 6.0.0) </identity.framework.package.import.version.range> <oauth2.generic.version.range>[0.0,1)</oauth2.generic.version.range> <oltu.version.range>[1.0,2)</oltu.version.range> <apache.commons.version.range>[2.6,3)</apache.commons.version.range> <javax.servlet.version.range>[2.6,3)</javax.servlet.version.range> <apache.commons.logging.version.range>[1.2,2)</apache.commons.logging.version.range> <osgi.framework.version.range>[1.8,2)</osgi.framework.version.range> <json.version.range>[3.0,4)</json.version.range> <jacoco.version>0.7.9</jacoco.version> <maven.surefire.plugin.version>2.18.1</maven.surefire.plugin.version> <sonar.coverage.exclusions> **/*Exception.java, **/*Constants*.java, **/*Component.java, **/*Component.java, **/*Holder.java </sonar.coverage.exclusions> </properties> </project>