在Maven复制依赖项命令中排除测试依赖项和插件依赖项

时间:2019-12-07 03:03:00

标签: spring-boot maven

Maven复制依赖项命令不排除插件中提到的依赖项。有没有办法排除它们?我正在使用以下命令?

pom.xml中有一个这样的插件

      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <version>2.2.1.RELEASE</version>
        <executions>
          <execution>
            <id>repackage</id>
            <goals>
              <goal>repackage</goal>
            </goals>
            <configuration>
              <mainClass>${start-class}</mainClass>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <mainClass>${start-class}</mainClass>
        </configuration>
      </plugin>
mvn clean dependency:copy-dependencies -DincludeScope=runtime -Dmdep.skip=true 
-Dsilent=true

目标是仅复制弹簧靴子罐中运输的罐子和传递罐子。有其他替代方法吗?

0 个答案:

没有答案