Browse Source

优化本地jar的配置

ChenYang 1 year ago
parent
commit
835550673f
4 changed files with 7 additions and 0 deletions
  1. BIN
      doc/jar/RXTXcomm-3.0.5.jar
  2. BIN
      doc/jar/jssc-2.8.0.jar
  3. BIN
      doc/jar/modbus4j-3.0.5.jar
  4. 7 0
      pom.xml

BIN
doc/jar/RXTXcomm-3.0.5.jar


BIN
doc/jar/jssc-2.8.0.jar


BIN
doc/jar/modbus4j-3.0.5.jar


+ 7 - 0
pom.xml

@@ -72,16 +72,22 @@
       <groupId>com.jwk</groupId>
       <artifactId>RXTXcomm</artifactId>
       <version>3.0.5</version>
+      <scope>system</scope>
+      <systemPath>${basedir}/doc/jar/RXTXcomm-3.0.5.jar</systemPath>
     </dependency>
     <dependency>
       <groupId>com.jwk</groupId>
       <artifactId>modbus4j</artifactId>
       <version>3.0.5</version>
+      <scope>system</scope>
+      <systemPath>${basedir}/doc/jar/modbus4j-3.0.5.jar</systemPath>
     </dependency>
     <dependency>
       <groupId>com.jwk</groupId>
       <artifactId>jssc</artifactId>
       <version>2.8.0</version>
+      <scope>system</scope>
+      <systemPath>${basedir}/doc/jar/jssc-2.8.0.jar</systemPath>
     </dependency>
     <!--modbus4j end-->
   </dependencies>
@@ -99,6 +105,7 @@
       <plugin>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-maven-plugin</artifactId>
+        <version>2.2.4.RELEASE</version>
         <configuration>
           <includeSystemScope>true</includeSystemScope>
         </configuration>