Skip to content

Commit

Permalink
Incrementalified
Browse files Browse the repository at this point in the history
  • Loading branch information
timja committed Oct 28, 2022
1 parent 89fef0c commit c4b29eb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,4 +1,3 @@
/.*
*.iml

/work
Expand Down
7 changes: 7 additions & 0 deletions .mvn/extensions.xml
@@ -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.4</version>
</extension>
</extensions>
2 changes: 2 additions & 0 deletions .mvn/maven.config
@@ -0,0 +1,2 @@
-Pconsume-incrementals
-Pmight-produce-incrementals
13 changes: 8 additions & 5 deletions pom.xml
Expand Up @@ -7,7 +7,7 @@
</parent>

<artifactId>cloud-stats</artifactId>
<version>0.28-SNAPSHOT</version>
<version>${revision}${changelist}</version>
<packaging>hpi</packaging>
<name>Cloud Statistics Plugin</name>
<description>Report Jenkins dynamic provisioning activities and statistics</description>
Expand All @@ -29,10 +29,10 @@
</licenses>

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

<dependencies>
Expand Down Expand Up @@ -72,6 +72,9 @@
</pluginRepositories>

<properties>
<revision>0.28</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/cloud-stats-plugin</gitHubRepo>
<jenkins.version>2.235.1</jenkins.version>
<java.level>8</java.level>
<surefire.useFile>false</surefire.useFile>
Expand Down

0 comments on commit c4b29eb

Please sign in to comment.