# jlibrtp
**Repository Path**: SmallUniv/jlibrtp
## Basic Information
- **Project Name**: jlibrtp
- **Description**: No description available
- **Primary Language**: Java
- **License**: BSD-3-Clause
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-04-28
- **Last Updated**: 2025-04-28
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# RTP Library for Java
jlibrtp aims to create a library that makes it easy to support RTP (RFC 3550,3551) in Java applications. SRTP (RFC 3771) has been delayed in favor of RFC 4585.
In order to increase compatibility, this library is compiled with JDK1.8.
## Include from from Maven
Configure maven to use Central from your Project Object Model (POM) file.You may do so by
adding the following to your pom.xml:
central
Maven Central
default
https://repo1.maven.org/maven2
false
Add jlibrtp as a dependecy to your pom.xml
org.jvoicexml
org.jlibrtp
0.2
module
## Include from Gradle
Add the Maven Central repository to your build.gradle
repositories {
mavenCentral()
}
Add jlibrtp as a an implementation dependency to your build.gradle
implementation 'org.jvoicexml:org.librtp:0.2'