diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..502cb26
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,13 @@
+# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
+
+version: 2
+updates:
+- package-ecosystem: maven
+ directory: /
+ schedule:
+ interval: weekly
+- package-ecosystem: github-actions
+ directory: /
+ schedule:
+ interval: weekly
+
diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml
new file mode 100644
index 0000000..f371773
--- /dev/null
+++ b/.github/workflows/cd.yaml
@@ -0,0 +1,19 @@
+# Note: additional setup is required, see https://www.jenkins.io/redirect/continuous-delivery-of-plugins
+
+name: cd
+on:
+ workflow_dispatch:
+ check_run:
+ types:
+ - completed
+
+permissions:
+ checks: read
+ contents: write
+
+jobs:
+ maven-cd:
+ uses: jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@v1
+ secrets:
+ MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
+ MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }}
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
new file mode 100644
index 0000000..1f36364
--- /dev/null
+++ b/.mvn/extensions.xml
@@ -0,0 +1,7 @@
+
+
+ io.jenkins.tools.incrementals
+ git-changelist-maven-extension
+ 1.7
+
+
diff --git a/.mvn/maven.config b/.mvn/maven.config
new file mode 100644
index 0000000..87e3aa0
--- /dev/null
+++ b/.mvn/maven.config
@@ -0,0 +1,4 @@
+-Pconsume-incrementals
+-Pmight-produce-incrementals
+-Dchangelist.format=%d.v%s
+
diff --git a/pom.xml b/pom.xml
index 3614ed2..d5bc959 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,17 +15,20 @@
naginator
hpi
- 1.20-SNAPSHOT
+ ${revision}.${changelist}
https://github.com/jenkinsci/naginator-plugin
- scm:git:git://github.com/jenkinsci/naginator-plugin.git
- scm:git:git@github.com:jenkinsci/naginator-plugin.git
- https://github.com/jenkinsci/naginator-plugin
- HEAD
+ scm:git:git://github.com/${gitHubRepo}.git
+ scm:git:git@github.com:${gitHubRepo}.git
+ https://github.com/${gitHubRepo}
+ ${scmTag}
+ 1
+ 999999-SNAPSHOT
+ jenkinsci/naginator-plugin
2.375.4