Skip to content
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Protocolo LLP — Implementación en Java

[![Maven Package](https://github.com/EnzoLeonel/llp-protocol-java/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/EnzoLeonel/llp-protocol-java/actions/workflows/maven-publish.yml)
[![Maven Package](https://github.com/flamicomm/llp-protocol-java/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/flamicomm/llp-protocol-java/actions/workflows/maven-publish.yml)
[![Licencia: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![Java 21](https://img.shields.io/badge/Java-21-blue)](https://www.oracle.com/java/)
[![codecov](https://codecov.io/github/EnzoLeonel/llp-protocol/graph/badge.svg?token=A6Q68GQDBJ)](https://codecov.io/github/EnzoLeonel/llp-protocol)
[![codecov](https://codecov.io/github/flamicomm/llp-protocol/graph/badge.svg?token=A6Q68GQDBJ)](https://codecov.io/github/flamicomm/llp-protocol)

Implementación en **Java 21** de **LLP (Layered Link Protocol)** — un protocolo de comunicación robusto, eficiente y extensible diseñado para la comunicación de dispositivos IoT. LLP está construido en torno a un modelo de cebolla en capas (layered onion model), donde cada trama puede transportar capas de protocolo opcionales sobre la capa de transporte obligatoria.

Expand Down Expand Up @@ -72,7 +72,7 @@ Crea un token con el permiso `read:packages`.
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/EnzoLeonel/llp-protocol-java</url>
<url>https://maven.pkg.github.com/flamicomm/llp-protocol-java</url>
</repository>
</repositories>

Expand Down Expand Up @@ -524,7 +524,7 @@ Licencia MIT — ver [LICENSE](https://www.google.com/search?q=LICENSE)

## ✍️ Autor

Creado por **EnzoLeonel**
Creado por **flamicomm**

---

Expand Down
2 changes: 1 addition & 1 deletion examples/llp-serial-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/EnzoLeonel/llp-protocol-java</url>
<url>https://maven.pkg.github.com/flamicomm/llp-protocol-java</url>
</repository>
</repositories>
</project>
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<name>LLP Core</name>
<description>LLP transport layer core with plugin-based extensibility via SPI</description>
<url>https://github.com/EnzoLeonel/llp-protocol-java</url>
<url>https://github.com/flamicomm/llp-protocol-java</url>

<licenses>
<license>
Expand All @@ -24,16 +24,16 @@

<developers>
<developer>
<id>EnzoLeonel</id>
<name>Enzo Leonel</name>
<url>https://github.com/EnzoLeonel</url>
<id>flamicomm</id>
<name>Flamingo Communications</name>
<url>https://github.com/flamicomm</url>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/EnzoLeonel/llp-protocol-java.git</connection>
<developerConnection>scm:git:https://github.com/EnzoLeonel/llp-protocol-java.git</developerConnection>
<url>https://github.com/EnzoLeonel/llp-protocol-java</url>
<connection>scm:git:https://github.com/flamicomm/llp-protocol-java.git</connection>
<developerConnection>scm:git:https://github.com/flamicomm/llp-protocol-java.git</developerConnection>
<url>https://github.com/flamicomm/llp-protocol-java</url>
<tag>HEAD</tag>
</scm>

Expand Down Expand Up @@ -196,8 +196,8 @@
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub EnzoLeonel Apache Maven Packages</name>
<url>https://maven.pkg.github.com/EnzoLeonel/llp-protocol-java</url>
<name>GitHub Flamicomm Apache Maven Packages</name>
<url>https://maven.pkg.github.com/flamicomm/llp-protocol-java</url>
</repository>
</distributionManagement>

Expand Down
Loading