当前位置: 首页 > 知识库问答 >
问题:

无法从artifactory中找到项目

吕鸿轩
2023-03-14

我正在使用JFrog artifactory 3.2.1.1和Maven 3.2.1。

我上传了一个已构建的项目,该项目存在于存储库浏览器下的libs-snapshot-local中。如果我浏览到com.foo.project,我会在artifactory浏览器中看到project-1.0-20151113.133436-1.jar文件以及pom和元数据

<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.bar</groupId>
  <artifactId>exampleApp</artifactId>
  <packaging>jar</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>exampleApp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <snapshots />
      <id>snapshots</id>
      <name>libs-snapshot</name>
      <url>http://example.foo:8081/artifactory/libs-snapshot</url>
    </repository>
  </repositories>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
            <id>unpack</id>
            <phase>prepare-package</phase>
            <goals>
              <goal>unpack</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>com.foo</groupId>
                  <artifactId>project</artifactId>
                  <version>1.0</version>
                  <type>jar</type>
                  <includes>myFolder</includes>
                  <outputDirectory>${project.build.directory}/newFolder/js/gmoketest</outputDirectory>
                </artifactItem>
              </artifactItems>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

我只是得到:

无法执行目标org.apache.maven.plugins:maven-dependency-plugin:2.8:unpack(解包)on project exampleApp:找不到工件。在http://example.com:8081/artifactory/libs中找不到com.foo:project:jar:1.0-快照已缓存在本地存储库中,在快照的更新间隔已过或强制更新之前,将不会重新尝试解决

如果更改http://example.foo:8081/artifactory/libs-snapshot

我将不断地将新的快照部署到同一个项目-1.0中,并且希望这个pom文件在从ArtiFactory构建时只包含最新的快照构建。

共有1个答案

籍昱
2023-03-14

答案是,我很快就发现需要将版本指定为:

<version>1.0-SNAPSHOT</version>
 类似资料:
  • 因此,我为放置了这两个文件。但是Spring不能从库里找到豆子吗? 编辑: 从图书馆,我有: 所以我为“com.my.package.mylibrary.domain”添加了@EntityScan,但这会使应用程序无限期地卡死。

  • 我有一个本地的artifactory存储库。我在应用程序的pom.xml中有一个依赖项,如下所示: 我在我的“ext-local-snapshot”存储库中部署了一个activequant-p2-1.3-snapshot.jar。Artifactory将其部署在org/activequant/activequant-p2/activequant-p2-1.3-20130925.170928.jar

  • null 我尝试在使用/gradlew clean后构建project,但没有任何帮助,我尝试使用不同版本的依赖关系,不同版本的gradle和只对java使用依赖关系,只对kotlin使用依赖关系,多次使用不同的配置,但没有任何帮助。奇怪的是,XML文件之外的一切似乎都很好,我可以很好地使用这个库中的类,但我需要用PreferenceScreen类进行布局,它不能识别它。

  • 我试图建立一个具有以下依赖关系的应用程序。 这是我在红帽网站上找到的一个例子-http://www.jboss.org/quickstarts/eap/helloworld-jms/ 我正在使用Netbeans 8.0.2。(还在dos和eclipse中使用Maven命令进行了尝试)我在构建时遇到了一个错误,下面是相同的日志: 我可以在以下路径找到文件: https://maven.reposit

  • 我在使用以下内容进行构建时遇到问题: mvn清理-U安装-Dmaven.test.skip=true 人工制品不在nexus中,而是在我的本地存储库中创建的。 [错误]无法在项目mis-core上执行目标:无法解决项目x. y. z: mis-core: ejb: 0.0.1-SNAPSHOT的依赖关系:无法在https://company.net:8080/nexus/content/repos

  • 我目前有一个Spring Boot应用程序,它依赖于Java模块。这个Java模块有一些类路径属性。当我从Spring Boot应用程序的Java模块中@autowired了一个bean,并用@bean注释定义这个bean,然后运行Spring Boot应用程序时,它将抛出错误。