Skip to content

Commit 2946416

Browse files
committed
Revert "Enable automated plugin release (#286)"
This reverts commit 50ed4e7.
1 parent 50ed4e7 commit 2946416

File tree

8 files changed

+25
-26
lines changed

8 files changed

+25
-26
lines changed

.github/release-drafter.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_extends: .github
2+
tag-template: declarative-pipeline-migration-assistant-$NEXT_MINOR_VERSION

.github/workflows/cd.yaml

-19
This file was deleted.

.github/workflows/release-drafter.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Release Drafter
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
update_release_draft:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: release-drafter/[email protected]
11+
env:
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.mvn/extensions.xml

+5
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@
44
<artifactId>git-changelist-maven-extension</artifactId>
55
<version>1.8</version>
66
</extension>
7+
<!--extension>
8+
<groupId>org.apache.maven.extensions</groupId>
9+
<artifactId>maven-build-cache-extension</artifactId>
10+
<version>1.0.0</version>
11+
</extension-->
712
</extensions>

.mvn/maven.config

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
-Pconsume-incrementals
22
-Pmight-produce-incrementals
3-
-Dchangelist.format=%d.v%s

declarative-pipeline-migration-assistant-api/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<parent>
55
<groupId>org.jenkins-ci.plugins.to-declarative</groupId>
66
<artifactId>declarative-pipeline-migration-assistant-parent</artifactId>
7-
<version>${changelist}</version>
7+
<version>${revision}${changelist}</version>
88
</parent>
99
<artifactId>declarative-pipeline-migration-assistant-api</artifactId>
10-
<version>${changelist}</version>
10+
<version>${revision}${changelist}</version>
1111
<packaging>hpi</packaging>
1212
<name>Declarative Pipeline Migration Assistant API</name>
1313
<description>Declarative Pipeline Migration Assistant API (this plugin contains APIs used to convert Freestyle Jobs into Declarative Pipelines).</description>

declarative-pipeline-migration-assistant/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<parent>
55
<groupId>org.jenkins-ci.plugins.to-declarative</groupId>
66
<artifactId>declarative-pipeline-migration-assistant-parent</artifactId>
7-
<version>${changelist}</version>
7+
<version>${revision}${changelist}</version>
88
</parent>
99
<artifactId>declarative-pipeline-migration-assistant</artifactId>
10-
<version>${changelist}</version>
10+
<version>${revision}${changelist}</version>
1111
<packaging>hpi</packaging>
1212
<name>Declarative Pipeline Migration Assistant</name>
1313
<description>Declarative Pipeline Migration Assistant Plugin.</description>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
<groupId>org.jenkins-ci.plugins.to-declarative</groupId>
3636
<artifactId>declarative-pipeline-migration-assistant-parent</artifactId>
37-
<version>${changelist}</version>
37+
<version>${revision}${changelist}</version>
3838
<packaging>pom</packaging>
3939
<name>Declarative Pipeline Migration Assistant</name>
4040

@@ -60,7 +60,7 @@
6060
</scm>
6161

6262
<properties>
63-
<changelist>999999-SNAPSHOT</changelist>
63+
<changelist>-SNAPSHOT</changelist>
6464
<gitHubRepo>jenkinsci/declarative-pipeline-migration-assistant-plugin</gitHubRepo>
6565
<jacoco.coverage.target>0.70</jacoco.coverage.target>
6666
<!-- For non-ci builds we'd like the build to still complete if jacoco metrics aren't met. -->

0 commit comments

Comments
 (0)