java - 将 jar 添加到 artifatory.m2/repository 后,maven 构建失败,不包含 jar 文件

标签 java maven grails intellij-idea artifactory

我尝试将 jasperreports.jar 文件添加到 libs-release-local:net/sf/jasperreports/jasperreports/5.0.1/jasperreports-5.0.1.jar 下的 Artifact 中,部署成功。

pom.xml 依赖

<dependency>
  <groupId>jasperreports-htmlcomponent</groupId>
  <artifactId>jasperreports-htmlcomponent</artifactId>
            <version>5.0.1</version>
        </dependency>

        <dependency>
            <groupId>net.sf.jasperreports</groupId>
            <artifactId>jasperreports</artifactId>
            <!--version>5.1.0</version-->
            <version>5.0.1</version>
            <exclusions>
                <exclusion>
                    <groupId>xml-apis</groupId>
                    <artifactId>xml-apis</artifactId>
                </exclusion>
                <exclusion>
                    <artifactId>commons-collections</artifactId>
                    <groupId>commons-collections</groupId>
                </exclusion>
            </exclusions>
        </dependency>

但是当我尝试从 Intellij 运行应用程序时,我得到依赖项的错误路径 这两个 jar 文件都存在于 Artifact 中,但未被识别。

[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 9.864 s
[INFO] Finished at: 2014-08-25T15:51:47-05:00
[INFO] Final Memory: 16M/243M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.grails:grails-maven-plugin:2.3.4:run-app (default-cli) on project MPF-SalesQuote: Failed to create classpath for Grails execution. Could not transfer artifact com.lowagie:itext:jar:2.1.7.js1 from/to metasystems-snapshots (http://javaguru.metasystems.com:8081/artifactory/metasystems-snapshot): Failed to transfer file: http://javaguru.metasystems.com:8081/artifactory/metasystems-snapshot/com/lowagie/itext/2.1.7.js1/itext-2.1.7.js1.jar. Return code is: 409, ReasonPhrase: The repository 'metasystems-snapshot' rejected the artifact 'metasystems-snapshot:com/lowagie/itext/2.1.7.js1/itext-2.1.7.js1.jar' due to its snapshot/release handling policy..
[ERROR] com.lowagie:itext:jar:2.1.7.js1
[ERROR] 
[ERROR] from the specified remote repositories:
[ERROR] metasystems-snapshots (http://javaguru.metasystems.com:8081/artifactory/metasystems-snapshot, releases=true, snapshots=true),
[ERROR] metasystems-release (http://javaguru.metasystems.com:8081/artifactory/metasystems-release, releases=true, snapshots=true),
[ERROR] local-releases (http://javaguru.metasystems.com:8081/artifactory/libs-release-local, releases=true, snapshots=true),
[ERROR] grails (http://repo.grails.org/grails/core, releases=true, snapshots=true),
[ERROR] grails-plugins (http://repo.grails.org/grails/plugins, releases=true, snapshots=true),
[ERROR] Metasystems Inc. (http://javaguru.metasystems.com:8081/artifactory/libs-release-local, releases=true, snapshots=true),
[ERROR] central-mirror (http://javaguru.metasystems.com:8081/artifactory/remote-repos, releases=true, snapshots=false)
[ERROR] Path to dependency:
[ERROR] 1) com.metasystems:MPF-SalesQuote:grails-app:1.0-SNAPSHOT
[ERROR] 2) net.sf.jasperreports:jasperreports:jar:5.0.1
[ERROR] 3) com.lowagie:itext:jar:2.1.7.js1
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoEx

执行异常

最佳答案

返回代码为:409,ReasonPhrase:存储库“metasystems-snapshot”由于其快照/发布处理策略而拒绝了 Artifact “metasystems-snapshot:com/lowagie/itext/2.1.7.js1/itext-2.1.7.js1.jar”。

正如错误代码 409 所示,您正在尝试将快照版本部署到仅发布存储库中。于是就有了冲突。在 pom.xml 中选择一个快照存储库而不是发布版本,或者为您的发布版本选择一个发布库而不是快照库。

关于java - 将 jar 添加到 artifatory.m2/repository 后,maven 构建失败,不包含 jar 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25493742/

相关文章:

grails - 从 Grails Tablib 返回 bool 值?

grails - 分页:第一页显示所有结果

grails - Groovy 脚本向 Grails Web App 发送多部分请求以进行测试

java - 为什么 JVM 不在 Windows x86 上发出预取指令

java - 处理括号语法

java - Maven 未安装 aws-encryption-sdk-java 依赖项

java - 通过 proguard 为模块中缩小的类创建源 jar

java - 在webapp中优雅地关闭ExecutorService?

java - 调用返回 null 的 getGraphics() 的任何替代方法

java - 优雅地停止由 maven-antrun-plugin 启动的 java 进程