Mavenのラベルのjarパッケージした後、他のプロジェクトはにインポートされません

重要なポイント

分類器は、execを設定されています

ポンポン設定ファイル

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
                <!-- 配置此配置,其他工程才能正常引入jar包 -->
        <classifier>exec</classifier>
                <!-- 配置此项,与springboot的热部署一起使用,不配置则会不生效  -->
        <fork>true</fork>
    </configuration>
</plugin>

おすすめ

転載: www.cnblogs.com/jichi/p/11621424.html