Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ jobs:
ACCESS_TOKEN: ${{ secrets.PPE_ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=PhonePe_distributed-latch
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=PhonePe_DistributedLatch

6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Thank you for considering contributing to Distributed Latch! We welcome contribu

### Reporting Bugs

- Check the [issue tracker](https://github.com/PhonePe/distributed-latch/issues) to see if the bug has already been reported.
- Check the [issue tracker](https://github.com/PhonePe/DistributedLatch/issues) to see if the bug has already been reported.
- If not, open a new issue with a clear title, description, steps to reproduce, and expected vs actual behavior.

### Suggesting Features
Expand All @@ -18,8 +18,8 @@ Thank you for considering contributing to Distributed Latch! We welcome contribu
1. **Fork** the repository on GitHub.
2. **Clone** your fork locally:
```bash
git clone https://github.com/<your-username>/distributed-latch.git
cd distributed-latch
git clone https://github.com/<your-username>/DistributedLatch.git
cd DistributedLatch
```
3. **Create a branch** for your change:
```bash
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Distributed Latch

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PhonePe_distributed-latch&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PhonePe_distributed-latch)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PhonePe_DistributedLatch&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PhonePe_DistributedLatch)

Distributed synchronization is a common requirement in service-oriented architectures, where a set of distributed
workers need to signal completion to a coordinator. Java's built-in `CountDownLatch` only works within a single JVM.
Expand All @@ -23,7 +23,7 @@ backed by a pluggable distributed storage layer.
</dependency>
```

> Replace `${distributed-latch.version}` with the latest version from [Maven Central](https://central.sonatype.com/artifact/com.phonepe/distributed-latch) or [GitHub Releases](https://github.com/PhonePe/distributed-latch/releases).
> Replace `${distributed-latch.version}` with the latest version from [Maven Central](https://central.sonatype.com/artifact/com.phonepe/distributed-latch) or [GitHub Releases](https://github.com/PhonePe/DistributedLatch/releases).

### Usage

Expand Down
6 changes: 3 additions & 3 deletions docs/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
</dependency>
```

Replace `${distributed-latch.version}` with the latest version from [Maven Central](https://central.sonatype.com/artifact/com.phonepe/distributed-latch) or [GitHub Releases](https://github.com/PhonePe/distributed-latch/releases).
Replace `${distributed-latch.version}` with the latest version from [Maven Central](https://central.sonatype.com/artifact/com.phonepe/distributed-latch) or [GitHub Releases](https://github.com/PhonePe/DistributedLatch/releases).

## Build Locally

```bash
git clone https://github.com/PhonePe/distributed-latch.git
cd distributed-latch
git clone https://github.com/PhonePe/DistributedLatch.git
cd DistributedLatch
mvn clean install
```

Expand Down
6 changes: 3 additions & 3 deletions docs/zensical.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[project]
site_name = "Distributed Latch"
site_url = "https://phonepe.github.io/distributed-latch"
repo_url = "https://github.com/PhonePe/distributed-latch"
copyright = "Copyright &copy; 2024-2026 PhonePe India Pvt. Ltd."
site_url = "https://phonepe.github.io/DistributedLatch"
repo_url = "https://github.com/PhonePe/DistributedLatch"
copyright = "Copyright &copy; 2026 PhonePe India Pvt. Ltd."

nav = [
{"Home" = "index.md"},
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
<artifactId>distributed-latch</artifactId>
<version>1.0.0-SNAPSHOT</version>

<url>https://github.com/PhonePe/distributed-latch</url>
<url>https://github.com/PhonePe/DistributedLatch</url>
<description>Distributed Latch</description>
<inceptionYear>2026</inceptionYear>

<scm>
<connection>scm:git:https://github.com/PhonePe/distributed-latch.git</connection>
<developerConnection>scm:git:https://github.com/PhonePe/distributed-latch.git</developerConnection>
<connection>scm:git:https://github.com/PhonePe/DistributedLatch.git</connection>
<developerConnection>scm:git:https://github.com/PhonePe/DistributedLatch.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/PhonePe/distributed-latch.git</url>
<url>https://github.com/PhonePe/DistributedLatch.git</url>
</scm>

<licenses>
Expand Down Expand Up @@ -50,12 +50,12 @@

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/PhonePe/distributed-latch/issues</url>
<url>https://github.com/PhonePe/DistributedLatch/issues</url>
</issueManagement>

<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/PhonePe/distributed-latch</url>
<url>https://travis-ci.org/PhonePe/DistributedLatch</url>
</ciManagement>

<repositories>
Expand Down Expand Up @@ -93,7 +93,7 @@
<maven.sonar.plugin.version>3.9.1.2184</maven.sonar.plugin.version>

<!-- Sonar properties -->
<sonar.projectKey>PhonePe_distributed-latch</sonar.projectKey>
<sonar.projectKey>PhonePe_DistributedLatch</sonar.projectKey>
<sonar.organization>phonepe</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.sources>src/main</sonar.sources>
Expand Down
Loading