Skip to content

Commit

Permalink
Publish incremental development artifacts (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite authored Dec 16, 2023
1 parent ff14631 commit 85f3c57
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .mvn/extensions.xml
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.2</version>
</extension>
</extensions>
2 changes: 2 additions & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-Pconsume-incrementals
-Pmight-produce-incrementals
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>groovy-postbuild</artifactId>
<version>2.6-SNAPSHOT</version>
<version>${revision}${changelist}</version>
<packaging>hpi</packaging>

<name>Groovy Postbuild</name>
Expand All @@ -35,13 +35,16 @@
</developers>

<scm>
<connection>scm:git:https://github.com/jenkinsci/groovy-postbuild-plugin.git</connection>
<developerConnection>scm:git:[email protected]:jenkinsci/groovy-postbuild-plugin.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/jenkinsci/groovy-postbuild-plugin</url>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection>
<tag>${scmTag}</tag>
<url>https://github.com/${gitHubRepo}</url>
</scm>

<properties>
<revision>2.6</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/groovy-postbuild-plugin</gitHubRepo>
<jenkins.version>2.361.4</jenkins.version>
<spotless.check.skip>false</spotless.check.skip>
</properties>
Expand Down

0 comments on commit 85f3c57

Please sign in to comment.