Browse Source

选矿调试

ChenYang 1 year ago
parent
commit
a0bff4b761

+ 7 - 0
package.xml

@@ -53,6 +53,13 @@
                 <include>logs</include>
             </includes>
         </fileSet>
+        <fileSet>
+            <directory>${basedir}/src/main/resources/lib</directory>
+            <outputDirectory>lib</outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
     </fileSets>
     <!-- 依赖的 jar 包 copy 到 lib 目录下 -->
     <dependencySets>

+ 0 - 4
pom.xml

@@ -238,10 +238,6 @@
     <packaging>pom</packaging>
 
 
-    <dependencies>
-
-    </dependencies>
-
     <build>
         <plugins>
             <plugin>

+ 1 - 19
ruoyi-admin/pom.xml

@@ -166,24 +166,6 @@
                 </configuration>
             </plugin>
 
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <version>2.10</version>
-                <executions>
-                    <execution>
-                        <id>copy-dependencies</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>copy-dependencies</goal>
-                        </goals>
-                        <configuration>
-                            <outputDirectory>${project.build.libUrl}</outputDirectory>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-
             <!-- 使用 mvn clean package 打包 更多配置可参考官司方文档:http://maven.apache.org/plugins/maven-assembly-plugin/single-mojo.html -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -227,4 +209,4 @@
         </plugins>
     </build>
 
-</project>
+</project>

+ 2 - 2
ruoyi-admin/src/main/resources/application-dev.yml

@@ -6,7 +6,7 @@ spring:
         druid:
             # 主库数据源
             master:
-                url: jdbc:mysql://47.100.220.92:3306/warewms-xuankuang?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8
+                url: jdbc:mysql://47.100.220.92:3306/warewms_xuankuang_cy?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8
                 username: warewms
                 password: warewms123
                 driverClassName: com.mysql.cj.jdbc.Driver
@@ -56,7 +56,6 @@ spring:
                 wall:
                     config:
                         multi-statement-allow: true
-    # redis 配置
     redis:
         # 地址
         host: 154.12.20.200
@@ -85,6 +84,7 @@ logging:
         com.ruoyi: info
         org.springframework: info
 
+
 # 是否开启服务
 init-task:
     autosend: false # 自动下发任务

+ 5 - 6
ruoyi-admin/src/main/resources/application-prod.yml

@@ -78,18 +78,17 @@ spring:
                 # #连接池最大阻塞等待时间(使用负值表示没有限制)
                 max-wait: -1ms
 
-# 是否开启服务
-testtag:
-    autosend: true
-    aciservice: true
-    gsService: true
-
 # 日志配置
 logging:
     level:
         com.ruoyi: info
         org.springframework: info
 
+init-task:
+    autosend: true # 自动下发任务
+    aciservice: true # ndc通讯
+
+
 # modbus-tcp
 modbus:
     tcp-master:

+ 1 - 2
ruoyi-admin/src/main/resources/application.yml

@@ -37,7 +37,7 @@ spring:
     # 国际化资源文件路径
     basename: i18n/messages
   profiles:
-    active: prod
+    active: dev
   # 文件上传
   servlet:
     multipart:
@@ -51,7 +51,6 @@ spring:
       # 热部署开关
       enabled: true
 
-
 # token配置
 token:
     # 令牌自定义标识

warewms-hard/src/main/resources/lib/RXTXcomm.jar → ruoyi-admin/src/main/resources/lib/RXTXcomm.jar


warewms-hard/src/main/resources/lib/jssc-2.8.0.jar → ruoyi-admin/src/main/resources/lib/jssc-2.8.0.jar


warewms-hard/src/main/resources/lib/modbus-spring-boot-starter.jar → ruoyi-admin/src/main/resources/lib/modbus-spring-boot-starter.jar


warewms-hard/src/main/resources/lib/modbus4j-3.0.5.jar → ruoyi-admin/src/main/resources/lib/modbus4j-3.0.5.jar


warewms-hard/src/main/resources/lib/rfid-1.0.0.jar → ruoyi-admin/src/main/resources/lib/rfid-1.0.0.jar


warewms-hard/src/main/resources/lib/rfid-zebra-spring-boot-starter.jar → ruoyi-admin/src/main/resources/lib/rfid-zebra-spring-boot-starter.jar


+ 11 - 7
warewms-hard/pom.xml

@@ -13,6 +13,10 @@
     <version>1.0</version>
     <description>硬件对接</description>
 
+    <properties>
+        <local.lib.basedir>${pom.basedir}/../ruoyi-admin/src/main/resources/lib</local.lib.basedir>
+    </properties>
+
     <dependencies>
         <!-- 若依框架 -->
         <dependency>
@@ -25,23 +29,23 @@
             <artifactId>modbus-spring-boot-starter</artifactId>
             <version>1.0</version>
             <scope>system</scope>
-            <systemPath>${pom.basedir}/src/main/resources/lib/modbus-spring-boot-starter.jar</systemPath>
+            <systemPath>${local.lib.basedir}/modbus-spring-boot-starter.jar</systemPath>
         </dependency>
         <dependency>
             <groupId>com.jwk</groupId>
             <artifactId>rfid-zebra-spring-boot-starter</artifactId>
             <version>1.0</version>
             <scope>system</scope>
-            <systemPath>${pom.basedir}/src/main/resources/lib/rfid-zebra-spring-boot-starter.jar</systemPath>
+            <systemPath>${local.lib.basedir}/rfid-zebra-spring-boot-starter.jar</systemPath>
         </dependency>
 
         <!-- rfid-zebra-只能跑在window上-->
         <dependency>
-            <groupId>com.warewms</groupId>
+            <groupId>com.jwk</groupId>
             <artifactId>rfid</artifactId>
             <version>1.0.0</version>
             <scope>system</scope>
-            <systemPath>${pom.basedir}/src/main/resources/lib/rfid-1.0.0.jar</systemPath>
+            <systemPath>${local.lib.basedir}/rfid-1.0.0.jar</systemPath>
         </dependency>
 
         <!--modbus4j start-->
@@ -50,21 +54,21 @@
             <artifactId>RXTXcomm</artifactId>
             <version>3.0.5</version>
             <scope>system</scope>
-            <systemPath>${pom.basedir}/src/main/resources/lib/RXTXcomm.jar</systemPath>
+            <systemPath>${local.lib.basedir}/RXTXcomm.jar</systemPath>
         </dependency>
         <dependency>
             <groupId>com.jwk</groupId>
             <artifactId>modbus4j</artifactId>
             <version>3.0.5</version>
             <scope>system</scope>
-            <systemPath>${pom.basedir}/src/main/resources/lib/modbus4j-3.0.5.jar</systemPath>
+            <systemPath>${local.lib.basedir}/modbus4j-3.0.5.jar</systemPath>
         </dependency>
         <dependency>
             <groupId>com.jwk</groupId>
             <artifactId>jssc</artifactId>
             <version>2.8.0</version>
             <scope>system</scope>
-            <systemPath>${pom.basedir}/src/main/resources/lib/jssc-2.8.0.jar</systemPath>
+            <systemPath>${local.lib.basedir}/jssc-2.8.0.jar</systemPath>
         </dependency>
         <!--modbus4j end-->
     </dependencies>