Skip to content

Commit fcd8f0f

Browse files
Merge pull request #7 from anupam-shrivastava/main
reuseable component - openid login with screename
2 parents c728336 + 6c3b410 commit fcd8f0f

File tree

6 files changed

+712
-0
lines changed

6 files changed

+712
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="bin/main" path="src/main/java">
4+
<attributes>
5+
<attribute name="gradle_scope" value="main"/>
6+
<attribute name="gradle_used_by_scope" value="main,test,testIntegration"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="bin/main" path="src/main/resources">
10+
<attributes>
11+
<attribute name="gradle_scope" value="main"/>
12+
<attribute name="gradle_used_by_scope" value="main,test,testIntegration"/>
13+
</attributes>
14+
</classpathentry>
15+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
16+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
17+
<classpathentry kind="output" path="bin/default"/>
18+
</classpath>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.gradle/
2+
.sass-cache/
3+
build/
4+
target/
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>openid-connect-screenname-login</name>
4+
<comment>Project openid-connect-screenname-login created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>com.liferay.ide.core.liferayNature</nature>
22+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
23+
</natures>
24+
</projectDescription>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Bundle-Name: Liferay Portal Security SSO OpenID Connect Implementation
2+
Bundle-SymbolicName: com.liferay.portal.security.sso.openid.connect.impl
3+
Bundle-Version: 7.0.30
4+
Import-Package:\
5+
!com.google.crypto.tink.*,\
6+
\
7+
!net.shibboleth.utilities.*,\
8+
\
9+
!org.bouncycastle.*,\
10+
\
11+
!org.cryptomator.siv.*,\
12+
\
13+
!org.joda.time.*,\
14+
\
15+
!org.opensaml.*,\
16+
\
17+
*
18+
19+
-includeresource: @com.liferay.portal.security.sso.openid.connect.impl-7.0.30.jar!/!com/liferay/portal/security/sso/openid/connect/internal/OIDCUserInfoProcessor.class
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
dependencies {
2+
compileOnly group: "com.liferay.portal", name: "release.dxp.api"
3+
4+
compileInclude group: "com.github.stephenc.jcip", name: "jcip-annotations", version: "1.0-1"
5+
compileInclude group: "com.nimbusds", name: "content-type", version: "2.0"
6+
compileInclude group: "com.nimbusds", name: "lang-tag", version: "1.4.4"
7+
compileInclude group: "com.nimbusds", name: "nimbus-jose-jwt", version: "8.14.1"
8+
compileInclude group: "com.nimbusds", name: "oauth2-oidc-sdk", version: "8.11"
9+
compileInclude group: "com.sun.mail", name: "jakarta.mail", version: "1.6.6"
10+
compileInclude group: "javax.activation", name: "activation", version: "1.1.1"
11+
compileInclude group: "org.apache.commons", name: "commons-lang3", version: "3.4"
12+
compileInclude group: "org.ow2.asm", name: "asm", version: "5.0.4"
13+
14+
compileOnly group: "com.liferay", name: "biz.aQute.bnd.annotation", version: "4.2.0.LIFERAY-PATCHED-2"
15+
compileOnly group: "javax.portlet", name: "portlet-api", version: "3.0.1"
16+
compileOnly group: "net.minidev", name: "accessors-smart", version: "2.4.9"
17+
compileOnly group: "net.minidev", name: "json-smart", version: "2.4.10"
18+
compileOnly group: "org.apache.felix", name: "org.apache.felix.http.servlet-api", version: "1.1.2"
19+
compileOnly group: "org.osgi", name: "org.osgi.annotation.versioning", version: "1.1.0"
20+
compileOnly group: "org.osgi", name: "org.osgi.service.cm", version: "1.6.0"
21+
compileOnly group: "org.osgi", name: "org.osgi.service.component.annotations", version: "1.4.0"
22+
compileOnly group: "org.osgi", name: "osgi.core", version: "6.0.0"
23+
24+
compileOnly group: 'com.liferay', name: 'com.liferay.portal.security.sso.openid.connect.api', version: "11.0.1"
25+
compileOnly group: 'com.liferay', name: 'com.liferay.portal.security.sso.openid.connect.persistence.api', version: "8.4.1"
26+
compileOnly group: 'com.liferay', name: 'com.liferay.portal.instance.lifecycle.api', version: "5.1.1"
27+
compileOnly group: 'com.liferay', name: 'com.liferay.portal.configuration.metatype.api', version: "6.4.0"
28+
29+
compile group: "com.liferay", name: "com.liferay.portal.security.sso.openid.connect.impl", version: "7.0.30"
30+
}
31+
32+
jar.archiveName = 'com.liferay.portal.security.sso.openid.connect.impl.jar'

0 commit comments

Comments
 (0)