sip-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.lunasaw</groupId> <artifactId>sip-common</artifactId> <version>1.1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.lunasaw</groupId> <artifactId>sip-proxy</artifactId> <version>1.1.4</version> </parent> <packaging>jar</packaging> <version>1.1.4</version> <artifactId>sip-common</artifactId> <name>sip-common</name> <description>轻量级SIP框架封装</description> <url>https://github.com/lunasaw/gb28181-proxy</url> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>javax.sip</groupId> <artifactId>jain-sip-ri</artifactId> </dependency> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> </dependency> <!-- 取代log4j --> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <classifier>exec</classifier> </configuration> </plugin> </plugins> </build> </project>