如何将其他类路径依赖项传递给maven中的testCompile阶段

前端之家收集整理的这篇文章主要介绍了如何将其他类路径依赖项传递给maven中的testCompile阶段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用一些外部jar依赖项来编译测试文件,这些依赖项不会出现在pom.xml的依赖项标记中.有没有办法通过配置.像这样的东西 –

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>
  <configuration>
    <source>1.5</source>
    <target>1.5</target>
  </configuration>
  <executions>
    <execution>
      <id>test-compile</id>
      <configuration>
        <classPathElements>
            <classPathElement>somejar.jar</classPathElement>
        </classPathElements>
      </configuration>
    </execution>

  </executions>
</plugin>

解决方法

试试这个,它包括你项目中的库

<dependency>
        <groupId>mylib</groupId>
        <artifactId>com.mylib</artifactId>
        <version>1.0</version>
        <scope>system</scope>
        <systemPath>${project.basedir}/src/main/resources/mylib.jar</systemPath>
</dependency>

猜你在找的设计模式相关文章