Hi there,
We have a few custom Jenkins plugins developed for version 1.454 and we want to compile
them for usage with version 1.651.3 or newer.
For example one of our plugins pom.xml looks like
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.454</version>
</parent>
<groupId>ci-release</groupId> <!-- historical -->
<artifactId>ci-release</artifactId> <!-- historical -->
<version>2.0.1</version>
<packaging>hpi</packaging>
When I want to go from 1.454 to 1.645 is easy I simply change 1.454 to 1.645 and plugin is built
however when I try to go to a version greater than 1.645 changing 1.454 to 1.651.3 I receive an
error
Non-resolvable parent POM: Could not find artifact org.jenkins-ci.plugins:plugin:pom:1.651.3 in repo.jenkins-ci.org (https://repo.jenkins-ci.org/public/) and 'parent.relativePath' points at wrong local POM @ line 3, column 11 -> [Help 2]
How can I solve this problem?
Best Regards
Panagiotis Lamprou
Hi Steffen,
Thank you for your reply. Yes I agree with this but if I want to install 1.651.3 war file for Jenkins
which one from plugin site should I select in my plugin’s pom file?
I have tried the following but it didn’t work
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.0</version>
</parent>
BR/s
Panagiotis
--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/bdc3e704-a79d-4c5f-aeff-70d55c033470%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
...
<parent> <groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin-pom</artifactId>
<version>2.0</version>
</parent>
<properties>
<jenkins.version>1.651.3</jenkins.version>....
--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/c4f4ed52-8ca4-4e5e-b0c0-2e44f3ad6681%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.