yangys
2025-05-16 fcdee3b9c488124a90c9f276be582ba6aac5c75e
smart-man-boot/pom.xml
@@ -597,7 +597,28 @@
                    </compilerArgs>
                </configuration>
            </plugin>
            <!--使用: mvn -pl smart-man-boot clean dependency:copy-dependencies-->
            <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
               <execution>
                  <id>copy-dependencies</id>
                  <phase>package</phase>
                  <goals>
                     <goal>copy-dependencies</goal>
                  </goals>
                  <configuration>
                     <!-- 拷贝项目依赖包到lib/目录下 -->
                     <outputDirectory>${project.build.directory}/lib</outputDirectory>
                     <overWriteReleases>false</overWriteReleases>
                     <overWriteSnapshots>false</overWriteSnapshots>
                     <overWriteIfNewer>true</overWriteIfNewer>
                  </configuration>
               </execution>
            </executions>
         </plugin>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-resources-plugin</artifactId>