Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mathsalmi/keycloak-sha1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: updox/keycloak-sha1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Sep 15, 2021

  1. Copy the full SHA
    f0dde60 View commit details

Commits on Feb 18, 2022

  1. Copy the full SHA
    592b5d0 View commit details

Commits on Feb 11, 2025

  1. Metadata Ingestion for IdP!

    This commit adds a file to this repository, to ingest metadata, making it officially part of the EverHealth IdP. 🚀
    
    🔧 What's inside?
    ✅ Metadata ingestion file 
    ✅ Integration with EverHealth IdP 
    ✅ One step closer to a unified catalog!
    firech13f committed Feb 11, 2025
    Copy the full SHA
    7aa1394 View commit details
Showing with 54 additions and 2 deletions.
  1. +16 −0 catalog-info.yaml
  2. +38 −2 pom.xml
16 changes: 16 additions & 0 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: keycloak-sha1
description: Add SHA1 support to Keycloak
annotations:
business-unit: EverHealth
github.com/project-slug: updox/keycloak-sha1
product: UPD
spec:
type: service
lifecycle: production
owner: EverHealth
implementation:
languages:
- Java
40 changes: 38 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -5,15 +5,15 @@
<groupId>com.msalmi</groupId>
<artifactId>keycloak-sha1</artifactId>

<version>0.0.1</version>
<version>16.1.0</version>
<name>keycloak-sha1</name>
<description>Adds SHA1 hashing support to Keycloak</description>

<packaging>jar</packaging>

<properties>
<java.release>11</java.release>
<keycloak.version>10.0.0</keycloak.version>
<keycloak.version>16.1.0</keycloak.version>
<junit.version>5.7.0</junit.version>
</properties>

@@ -85,4 +85,40 @@
</plugin>
</plugins>
</build>

<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Central Mirror</name>
<url>https://nexus.updoxnet.com/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<repositories>
<repository>
<id>central</id>
<name>Central Mirror</name>
<url>https://nexus.updoxnet.com/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<distributionManagement>
<snapshotRepository>
<id>updox</id>
<name>Updox Snapshots</name>
<url>https://nexus.updoxnet.com/repository/snapshots/</url>
</snapshotRepository>
<repository>
<id>updox</id>
<name>Updox Releases</name>
<url>https://nexus.updoxnet.com/repository/releases/</url>
</repository>
</distributionManagement>

</project>