Skip to content

Commit

Permalink
Merge pull request #83 from basil/pom
Browse files Browse the repository at this point in the history
Update plugin parent POM
  • Loading branch information
uhafner authored Apr 24, 2022
2 parents 48585a9 + fa87ca5 commit 302015e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<extension>
<groupId>io.jenkins.tools.incrementals</groupId>
<artifactId>git-changelist-maven-extension</artifactId>
<version>1.2</version>
<version>1.3</version>
</extension>
</extensions>
5 changes: 4 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
buildPlugin(useAci: true)
buildPlugin(useAci: true,
configurations: [
[platform: 'linux', jdk: '11']
])
11 changes: 6 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-pom</artifactId>
<version>5.13.0</version>
<version>5.24.0</version>
<relativePath />
</parent>

Expand All @@ -15,11 +15,12 @@
<version>${revision}${changelist}</version>

<description>Provides Popper.js for Jenkins plugins.</description>
<url>https://github.com/jenkinsci/popper-api-plugin</url>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>

<properties>
<revision>1.16.1-3</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<popper.version>1.16.1-lts</popper.version>

<module.name>${project.groupId}.popper</module.name>
Expand Down Expand Up @@ -96,9 +97,9 @@
</build>

<scm>
<connection>scm:git:git://github.com/jenkinsci/popper-api-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/popper-api-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/popper-api-plugin</url>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
</scm>

Expand Down
4 changes: 4 additions & 0 deletions src/main/resources/index.jelly
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?jelly escape-by-default='true'?>
<div>
Provides Popper.js for Jenkins plugins.
</div>

0 comments on commit 302015e

Please sign in to comment.