Skip to content

Commit

Permalink
Merge pull request #1 from axonivy-market/tycho
Browse files Browse the repository at this point in the history
tycho release build
  • Loading branch information
ivy-rew authored Oct 23, 2023
2 parents 028cd23 + 1219c36 commit 4cc0005
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
<developerConnection>scm:git:https://github.com/axonivy-market/${project.name}.git</developerConnection>
<tag>HEAD</tag>
</scm>

<properties>
<tycho.version>3.0.4</tycho.version>
<maven.scm.plugin>2.0.1</maven.scm.plugin>
<release.goals>org.eclipse.tycho:tycho-versions-plugin:${tycho.version}:update-eclipse-metadata org.apache.maven.plugins:maven-scm-plugin:${maven.scm.plugin}:add org.apache.maven.plugins:maven-scm-plugin:${maven.scm.plugin}:checkin</release.goals>
</properties>

<build>
<pluginManagement>
Expand All @@ -33,7 +39,28 @@
<version>3.0.0-M4</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<preparationGoals>${release.goals}</preparationGoals>
<completionGoals>${release.goals}</completionGoals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${maven.scm.plugin}</version>
<executions>
<execution>
<id>default-cli</id>
<goals>
<goal>add</goal>
<goal>checkin</goal>
</goals>
<configuration>
<includes>**/META-INF/MANIFEST.MF,pom.xml</includes>
<excludes>**/target/**</excludes>
<message>Changing the version to reflect the pom versions for the release</message>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit 4cc0005

Please sign in to comment.