我是Jenkins插件开发的新手,并试图通过使用maven项目并将eclipse作为IDE来创建Jenkins插件。
下面是pom.xml文件结构:
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.4</version>
<relativePath />
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>JenkinPluginDev</artifactId>
<version>1.0</version>
<packaging>hpi</packaging>
<properties>
<jenkins.version>2.7.3</jenkins.version>
<java.level>7</java.level>
</properties>
<name>TODO Plugin</name>
<description>TODO</description>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<!-- Assuming you want to host on @jenkinsci:
<url>https://wiki.jenkins.io/display/JENKINS/TODO+Plugin</url>
<scm>
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
</scm>
-->
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
</project>
maven项目的“ Parent”标签附近的POM.xml文件中出现了一些错误。
我试图运行Maven目标来解决该问题,但是它未能建立,并在控制台中观察到以下错误消息。
下载: https://repo.jenkins-ci.org/public/org/jenkins-ci/plugins/plugin/3.4/plugin-3.4.pom [错误]构建无法读取1个项目-> [帮助1] [错误]
[错误]项目io.jenkins.plugins:JenkinPluginDev:1.0
(C:\ jenkinPluginDevelopment \ JenkinPluginDev \ pom.xml)有1个错误
[错误]不可解析的父POM:无法传输工件 org.jenkins-ci.plugins:plugin:pom:3.4 from / to repo.jenkins-ci.org (https://repo.jenkins-ci.org/public/):未对等身份验证,并且 'parent.relativePath'指向第4行第13列的本地POM-> [帮助2]
[错误] [错误]要查看错误的完整堆栈跟踪, 使用-e开关重新运行Maven。
[错误]使用-X重新运行Maven 开关以启用完整的调试日志记录。
[错误] [错误]有关错误和可能的解决方案的详细信息,请阅读以下文章:
[错误] [帮助1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException [错误] [帮助2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException
任何线索...
答案 0 :(得分:0)
该项目是否依赖于另一个父项目?
错误parent.relativePath' points at no local POM @ line 4, column 13
表示您没有父pom xml。
您可以发布您的文件夹结构吗?
答案 1 :(得分:0)
真正的问题是repo.jenkins-ci.org提供的SSL证书不在您信任的ca数据库中(对等方未认证)。
您可以更新JRE ca密钥库或手动安装CA证书(使用keytool)。
也有可能您的本地时钟距离太远,因此证书验证失败(即使密钥库中存在CA证书)。尝试使用-e
重新运行Maven,这将产生更多详细错误。
最后一种选择(不建议使用)是在禁用了SSL检查的情况下运行Maven(可在here中找到详细信息)
答案 2 :(得分:0)
我现在正在开发jenkins插件。
一开始,我遇到了同样的问题:制作一个干净正确的pom.xml
检查了数十个github官方jenkins插件存储库后,我能够创建一个非常好的入门pom.xml:
这是我当前的pom,它可以完美运行(java 8,eclipse,maven,linux等)
https://gist.github.com/jrichardsz/e5d7b67475f1625f4487740708af285d
此外,您可以检查此官方pugin github存储库以搜索poms: