gpt4 book ai didi

java - 我有项目 A 并转换为 JAR,当试图在项目 B 中使用时看不到任何包并且无法访问

转载 作者:行者123 更新时间:2023-11-30 12:01:57 25 4
gpt4 key购买 nike

enter image description here enter image description here我在 eclipse 中使用了 maven 插件,所以即使我尝试手动添加 setting.xml 也看不到任何 setting.xml。

我遗漏了什么,请在详细信息步骤中更正我。

My pom is

http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0

<groupId>demo</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.project</groupId>
<artifactId>SOA_API_Automation</artifactId>
<scope>system</scope>
<version>0.0.1-SNAPSHOT</version>
<systemPath>{jar/path}</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

最佳答案

如果您指的是 settings.xml,它是 Maven 的用户特定配置,它不存在于 POM 中。它存在于 ~/.m2/settings.xml 中。有关详细信息,请参阅 maven doc

关于java - 我有项目 A 并转换为 JAR,当试图在项目 B 中使用时看不到任何包并且无法访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59075484/

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