3rdparty 存储库问题与 Maven pom.xml
3rdparty repository issues with maven pom.xml
我在网上寻找 BIRT 依赖项。我的代码引用的包是
import org.eclipse.birt.chart.model.Chart;
import org.eclipse.birt.chart.model.attribute.Anchor;
它正在使用 chartengineapi,下面是 POM 的 maven 依赖项。
<!-- https://mvnrepository.com/artifact/org.eclipse.birt/chartengineapi -->
<dependency>
<groupId>org.eclipse.birt</groupId>
<artifactId>chartengineapi</artifactId>
<version>2.3.2</version>
</dependency>
因为它是其他存储库 (https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/) 的一部分,所以它在 Pom.xml 中给出了错误。谁能帮我解决这个问题?
已添加存储库标签并已解决。
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
再添加一个 <repository></repository>
并提供新的存储库名称和 link。虽然我不确定这是否是标准方法,但它对我有用。
我在网上寻找 BIRT 依赖项。我的代码引用的包是
import org.eclipse.birt.chart.model.Chart;
import org.eclipse.birt.chart.model.attribute.Anchor;
它正在使用 chartengineapi,下面是 POM 的 maven 依赖项。
<!-- https://mvnrepository.com/artifact/org.eclipse.birt/chartengineapi -->
<dependency>
<groupId>org.eclipse.birt</groupId>
<artifactId>chartengineapi</artifactId>
<version>2.3.2</version>
</dependency>
因为它是其他存储库 (https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/) 的一部分,所以它在 Pom.xml 中给出了错误。谁能帮我解决这个问题?
已添加存储库标签并已解决。
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
再添加一个 <repository></repository>
并提供新的存储库名称和 link。虽然我不确定这是否是标准方法,但它对我有用。