gpt4 book ai didi

java - Maven 不包括依赖项

转载 作者:行者123 更新时间:2023-12-01 11:16:29 26 4
gpt4 key购买 nike

我的 pom.xml 文件中有这个:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.foo.ch1</groupId>
<artifactId>tutorials</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>tutorials</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>image-processing</artifactId>
<groupId>org.openimaj</groupId>
<version>1.3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<artifactId>video-processing</artifactId>
<groupId>org.openimaj</groupId>
<version>1.3.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>

我一直在关注这个:

http://www.openimaj.org/tutorial/processing-video.html

但由于某种原因,未检测到 XuggleVideo 类以及与视频有关的任何内容。我的项目被分成单独的包。无论如何,我认为这在 Maven 中并不重要。

我的 pom.xml 文件设置是否错误?

最佳答案

使用此存储库 <url>http://www.openimaj.org</url>相反 <url>http://maven.apache.org</url>

关于java - Maven 不包括依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31771572/

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