Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Thumimku committed Nov 8, 2023
1 parent 8e80f60 commit 7c51876
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ org.wso2.carbon.identity.api.user.challenge.common-*.jar,\
org.wso2.carbon.identity.api.user.common-*.jar,\
org.wso2.carbon.identity.api.user.session.common-*.jar,\
org.wso2.carbon.identity.application.authentication.endpoint.util-*.jar,\
org.wso2.carbon.identity.client.attestation.filter-*.jar,\
org.wso2.carbon.identity.oauth.client.authn.filter-*.jar,\
org.wso2.carbon.identity.rest.api.server.challenge.*.jar,\
org.wso2.carbon.identity.rest.api.server.claim.management.*.jar,\
Expand Down
7 changes: 7 additions & 0 deletions modules/p2-profile-gen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,9 @@
<featureArtifactDef>
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.input.validation.mgt.server.feature:${carbon.identity.framework.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.client.attestation.mgt.server.feature:${carbon.identity.framework.version}
</featureArtifactDef>
<featureArtifactDef>
org.wso2.carbon.identity.framework:org.wso2.carbon.identity.consent.server.configs.mgt.server.feature:${carbon.identity.framework.version}
</featureArtifactDef>
Expand Down Expand Up @@ -1095,6 +1098,10 @@
<id>org.wso2.carbon.identity.input.validation.mgt.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.client.attestation.mgt.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
</feature>
<feature>
<id>org.wso2.carbon.identity.consent.server.configs.mgt.server.feature.group</id>
<version>${carbon.identity.framework.version}</version>
Expand Down
61 changes: 61 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2004,6 +2004,16 @@
<artifactId>org.wso2.carbon.identity.input.validation.mgt.server.feature</artifactId>
<version>${carbon.identity.framework.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.framework</groupId>
<artifactId>org.wso2.carbon.identity.client.attestation.mgt</artifactId>
<version>${carbon.identity.framework.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.framework</groupId>
<artifactId>org.wso2.carbon.identity.client.attestation.mgt.server.feature</artifactId>
<version>${carbon.identity.framework.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.framework</groupId>
<artifactId>org.wso2.carbon.identity.consent.server.configs.mgt</artifactId>
Expand Down Expand Up @@ -2154,6 +2164,52 @@
</exclusion>
</exclusions>
</dependency>
<!-- Google Attestation dependency-->

<!--Google Library for android attestation client-->
<dependency>
<groupId>org.wso2.orbit.com.google.api-services-playintegrity</groupId>
<artifactId>google-api-services-playintegrity</artifactId>
<version>2.0.0.wso2v1</version>
</dependency>

<!--Google Library for oauth credentials-->
<dependency>
<groupId>org.wso2.orbit.com.google.auth-library-oauth2-http</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<version>1.20.0.wso2v1</version>
</dependency>

<!--Google Library for http client-->
<dependency>
<groupId>org.wso2.orbit.com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
<version>1.43.3.wso2v1</version>
</dependency>

<!-- // TODO check delete-->
<!-- <dependency>-->
<!-- <groupId>org.wso2.orbit.com.google.oauth-client</groupId>-->
<!-- <artifactId>google-oauth-client</artifactId>-->
<!-- <version>1.33.3.wso2v1</version>-->
<!-- </dependency>-->

<!--Google Library for gson client-->
<dependency>
<groupId>org.wso2.orbit.com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>2.2.0.wso2v1</version>
</dependency>
<dependency>
<groupId>org.wso2.orbit.io.opencensus</groupId>
<artifactId>opencensus</artifactId>
<version>0.31.1.wso2v1</version>
</dependency>
<dependency>
<groupId>org.wso2.orbit.io.grpc</groupId>
<artifactId>grpc-context</artifactId>
<version>1.27.2.wso2v1</version>
</dependency>
<!-- Pax Logging -->
<dependency>
<groupId>org.wso2.org.ops4j.pax.logging</groupId>
Expand Down Expand Up @@ -2577,6 +2633,11 @@
<org.apache.logging.log4j.version>2.17.1</org.apache.logging.log4j.version>
<org.apache.log4j.wso2.version>1.2.17.wso2v1</org.apache.log4j.wso2.version>

<com.google.api.playintegrity.version>1.0.0.wso2v1</com.google.api.playintegrity.version>
<com.google.auth.version>1.20.0.wso2v1</com.google.auth.version>
<com.google.http.client.version>1.43.3.wso2v1</com.google.http.client.version>
<com.google.gson.client.version>2.2.0.wso2v1</com.google.gson.client.version>

<project.scm.id>my-scm-server</project.scm.id>

</properties>
Expand Down

0 comments on commit 7c51876

Please sign in to comment.