From 76d8aa5377d3f60500f97200be99f31c0c385203 Mon Sep 17 00:00:00 2001 From: Lawrence <1934378145@qq.com> Date: 星期六, 07 十一月 2020 22:02:17 +0800 Subject: [PATCH] 修正设备在线离线判断的错误 --- pom.xml | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3a805e7..b5e44c0 100644 --- a/pom.xml +++ b/pom.xml @@ -123,8 +123,8 @@ <groupId>javax.sip</groupId> <artifactId>jain-sip-ri</artifactId> <version>1.3.0-92</version> - <!-- <scope>system</scope> - <systemPath>${project.basedir}/libs/jain-sip-ri-1.3.0-91.jar</systemPath> --> + <scope>system</scope> + <systemPath>${project.basedir}/libs/jain-sip-ri-1.3.0-92.jar</systemPath> </dependency> <dependency> <groupId>org.dom4j</groupId> @@ -163,6 +163,7 @@ <build> <plugins> + <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> @@ -176,6 +177,18 @@ <configuration> <source>1.8</source> <target>1.8</target> + <!-- + <webResources> + <resource> + <directory>${project.basedir}/libs</directory> + <targetPath>WEB-INF/lib</targetPath> + <filtering>true</filtering> + <includes> + <include>**/*.jar</include> + </includes> + </resource> + </webResources> + --> </configuration> </plugin> @@ -183,6 +196,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> + </plugins> </build> </project> -- Gitblit v1.8.0