yangys
2025-05-16 fcdee3b9c488124a90c9f276be582ba6aac5c75e
smart-man-boot/pom.xml
@@ -134,16 +134,7 @@
            <artifactId>smart-starter-social</artifactId>
            <version>1.0.0</version>
        </dependency>
        <!--
        
      -->
      <!--
      -->
        <dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>knife4j-spring-ui</artifactId>
@@ -287,16 +278,18 @@
        
        
        <!--  coderule -->
      <!--
        
       -->
       
       <!--  Task发送器 -->
       <!--
        <dependency>
            <groupId>com.qianwen</groupId>
            <artifactId>smart-starter-task</artifactId>
            <version>1.0.0</version>
        </dependency>
         -->
       <!-- Notify通知中心 -->
        <dependency>
            <groupId>com.qianwen</groupId>
@@ -327,13 +320,14 @@
            <artifactId>smart-starter-websocket</artifactId>
            <version>1.0.0</version>
        </dependency>
   <!--
       starter-taskzhong 包含此依赖
      <dependency>
          <groupId>org.apache.rocketmq</groupId>
          <artifactId>rocketmq-client</artifactId>
          <version>4.5.2</version>
      </dependency>
      -->
      <dependency>
          <groupId>org.springframework.integration</groupId>
          <artifactId>spring-integration-mqtt</artifactId>
@@ -394,6 +388,13 @@
            <!--<version>1.1.0-SNAPSHOT</version>-->
            <version>1.0.4</version>
        </dependency>
        <!--千文密钥认证-->
        <dependency>
         <groupId>com.qianwen</groupId>
         <artifactId>license-common</artifactId>
         <version>1.0.0</version>
      </dependency>
        <!-- 图片压缩 -->
        <dependency>
            <groupId>net.coobird</groupId>
@@ -495,6 +496,27 @@
         <groupId>commons-fileupload</groupId>
        <artifactId>commons-fileupload</artifactId>
      </dependency>
      <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.jfree</groupId>
          <artifactId>jfreechart</artifactId>
          <version>1.5.5</version>
      </dependency>
      <!--lincense验证-->
      <dependency>
            <groupId>de.schlichtherle.truelicense</groupId>
            <artifactId>truelicense-core</artifactId>
            <version>1.33</version>
        </dependency>
    </dependencies>
   
  <build>
@@ -551,6 +573,18 @@
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
               <mainClass>com.qianwen.smartman.Application</mainClass>
                    <layout>ZIP</layout>
                    <includes>
                        <include>
                            <groupId>nothing</groupId>
                            <artifactId>nothing</artifactId>
                        </include>
                    </includes>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
@@ -563,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>