gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-11-01 03:47:38 25 4
gpt4 key购买 nike

我想使用一些外部 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>

关于java - 如何将其他类路径依赖项传递给 Maven 中的 testCompile 阶段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40735284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com