Skip to content

Commit

Permalink
Merge pull request #16795 from bhagyasakalanka/private-jwt-handler
Browse files Browse the repository at this point in the history
Add private jwt clientauth handler to IS
  • Loading branch information
bhagyasakalanka authored Oct 4, 2023
2 parents d7550a6 + 2b112d9 commit a00b408
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
15 changes: 15 additions & 0 deletions modules/p2-profile-gen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@
<featureArtifactDef>
org.wso2.carbon.extension.identity.authenticator.outbound.emailotp:org.wso2.carbon.identity.authenticator.emailotp.feature:${authenticator.emailotp.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.extension.identity.oauth.addons:org.wso2.carbon.identity.oauth2.token.handler.clientauth.jwt.feature:${identity.oauth.addons.version}
</featureArtifactDef>

<featureArtifactDef>
org.wso2.carbon.identity.user.ws:org.wso2.carbon.um.ws.service.feature:${identity.user.ws.version}
Expand Down Expand Up @@ -1102,6 +1105,10 @@
<id>org.wso2.carbon.identity.authenticator.emailotp.feature.group</id>
<version>${authenticator.emailotp.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.oauth2.token.handler.clientauth.jwt.feature.group</id>
<version>${identity.oauth.addons.version}</version>
</feature>

<feature>
<id>org.wso2.carbon.identity.application.authenticator.oidc.server.feature.group</id>
Expand Down Expand Up @@ -1673,6 +1680,10 @@
<id>org.wso2.carbon.identity.authenticator.emailotp.feature.group</id>
<version>${authenticator.emailotp.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.oauth2.token.handler.clientauth.jwt.feature.group</id>
<version>${identity.oauth.addons.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.extension.identity.verification.provider.feature.group</id>
<version>${identity.verification.version}</version>
Expand Down Expand Up @@ -2148,6 +2159,10 @@
<id>org.wso2.carbon.identity.authenticator.emailotp.feature.group</id>
<version>${authenticator.emailotp.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.oauth2.token.handler.clientauth.jwt.feature.group</id>
<version>${identity.oauth.addons.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.extension.identity.verification.provider.feature.group</id>
<version>${identity.verification.version}</version>
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2049,6 +2049,12 @@
<artifactId>org.wso2.carbon.extension.identity.verification.ui</artifactId>
<version>${identity.verification.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.extension.identity.oauth.addons</groupId>
<artifactId>org.wso2.carbon.identity.oauth2.token.handler.clientauth.jwt</artifactId>
<version>${identity.oauth.addons.version}</version>
</dependency>

<dependency>
<groupId>org.wso2.msf4j</groupId>
<artifactId>msf4j-core</artifactId>
Expand Down Expand Up @@ -2292,7 +2298,7 @@
<properties>

<!--Carbon Identity Framework Version-->
<carbon.identity.framework.version>5.25.361</carbon.identity.framework.version>
<carbon.identity.framework.version>5.25.364</carbon.identity.framework.version>
<carbon.identity.framework.version.range>[5.14.67, 6.0.0]</carbon.identity.framework.version.range>

<!--SAML Common Utils Version-->
Expand Down

0 comments on commit a00b408

Please sign in to comment.