Common无法打包

  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-maven-plugin</artifactId>
  6. <executions>
  7. <execution>
  8. <phase>none</phase>
  9. </execution>
  10. </executions>
  11. <configuration>
  12. <classifier>execute</classifier>
  13. </configuration>
  14. </plugin>
  15. </plugins>
  16. </build>
  • 其他
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-maven-plugin</artifactId>
  6. <configuration>
  7. <excludes>
  8. <exclude>
  9. <groupId>org.projectors</groupId>
  10. <artifactId>lombok</artifactId>
  11. </exclude>
  12. </excludes>
  13. </configuration>
  14. </plugin>
  15. </plugins>
  16. </build>