-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into use-new-table-style
- Loading branch information
Showing
11 changed files
with
67 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc | ||
_extends: .github | ||
tag-template: cloudbees-disk-usage-simple-$NEXT_MINOR_VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Note: additional setup is required, see https://www.jenkins.io/redirect/continuous-delivery-of-plugins | ||
|
||
name: cd | ||
on: | ||
workflow_dispatch: | ||
check_run: | ||
types: | ||
- completed | ||
|
||
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 }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd"> | ||
<extension> | ||
<groupId>io.jenkins.tools.incrementals</groupId> | ||
<artifactId>git-changelist-maven-extension</artifactId> | ||
<version>1.3</version> | ||
</extension> | ||
</extensions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-Pconsume-incrementals | ||
-Pmight-produce-incrementals | ||
-Dchangelist.format=%d.v%s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
java adoptopenjdk-8.0.252+9.1 | ||
maven 3.6.3 | ||
maven 3.8.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,21 +30,22 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>plugin</artifactId> | ||
<version>4.31</version> | ||
<version>4.42</version> | ||
</parent> | ||
|
||
<artifactId>cloudbees-disk-usage-simple</artifactId> | ||
<version>0.11-SNAPSHOT</version> | ||
<version>${changelist}</version> | ||
<packaging>hpi</packaging> | ||
|
||
<name>CloudBees Disk Usage Simple Plugin</name> | ||
<description>This is a simple disk usage plugin that calculates job disk usage while limiting the performance impact on the Jenkins master.</description> | ||
<url>https://github.com/jenkinsci/cloudbees-disk-usage-simple-plugin</url> | ||
|
||
<properties> | ||
<jenkins.version>2.334</jenkins.version> | ||
<changelist>999999-SNAPSHOT</changelist> | ||
<gitHubRepo>jenkinsci/cloudbees-disk-usage-simple-plugin</gitHubRepo> | ||
<jenkins.version>2.332.4</jenkins.version> | ||
<java.level>8</java.level> | ||
<useBeta>true</useBeta> | ||
</properties> | ||
|
||
<licenses> | ||
|
@@ -60,28 +61,48 @@ | |
<id>ndeloof</id> | ||
<name>Nicolas De Loof</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Maintainer (retired)</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>aheritier</id> | ||
<name>Arnaud Heritier</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Maintainer (retired)</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>recena</id> | ||
<name>Manuel Recena</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Maintainer (retired)</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>ydubreuil</id> | ||
<name>Yoann Dubreuil</name> | ||
<roles> | ||
<role>Maintainer (retired)</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>pierrebtz</id> | ||
<name>Pierre Beitz</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Maintainer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git@github.com:jenkinsci/cloudbees-disk-usage-simple-plugin.git</connection> | ||
<developerConnection>scm:git:git@github.com:jenkinsci/cloudbees-disk-usage-simple-plugin.git</developerConnection> | ||
<url>http://github.com/jenkinsci/cloudbees-disk-usage-simple-plugin</url> | ||
<tag>HEAD</tag> | ||
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection> | ||
<developerConnection>scm:git:https://github.com/${gitHubRepo}.git</developerConnection> | ||
<url>https://github.com/${gitHubRepo}</url> | ||
<tag>${scmTag}</tag> | ||
</scm> | ||
|
||
<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need --> | ||
|
@@ -98,14 +119,6 @@ | |
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.jvnet.hudson.plugins</groupId> | ||
<artifactId>extended-read-permission</artifactId> | ||
<version>3.2</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters