Skip to content

Commit

Permalink
Set Build and SCM Config
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelva committed Dec 18, 2024
1 parent 53495db commit 2267758
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,32 @@
<artifactId>nuxeo-parent</artifactId>
<version>2025.0.102</version>
</parent>

<groupId>org.nuxeo.labs.utils</groupId>
<artifactId>nuxeo-labs-utils-parent</artifactId>
<version>2025.0.0-SNAPSHOT</version>
<name>Nuxeo labs utils parent</name>
<description/>
<packaging>pom</packaging>

<properties>
<!-- Skip Nuxeo enforcer rules by default -->
<nuxeo.skip.enforcer>true</nuxeo.skip.enforcer>
<nuxeo.target.version>2025.*</nuxeo.target.version>
</properties>

<modules>
<module>nuxeo-labs-utils-core</module>
<module>nuxeo-labs-utils-package</module>
</modules>

<scm/>
<scm>
<connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection>
<url>https://github.com/nuxeo-sandbox/nuxeo-labs-utils</url>
</scm>
<licenses/>
<mailingLists/>
<issueManagement/>
<ciManagement/>
<developers/>
<distributionManagement/>

<dependencyManagement>
<dependencies>
<dependency>
Expand All @@ -46,7 +45,6 @@
</dependency>
</dependencies>
</dependencyManagement>

<repositories>
<repository>
<id>maven-public</id>
Expand Down Expand Up @@ -82,7 +80,6 @@
</snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>maven-public</id>
Expand All @@ -95,7 +92,6 @@
</snapshots>
</pluginRepository>
</pluginRepositories>

<build>
<pluginManagement>
<plugins>
Expand All @@ -106,6 +102,20 @@
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<projectVersionPolicyId>SemVerVersionPolicy</projectVersionPolicyId>
<tagNameFormat>@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<scmReleaseCommitComment>Release @{releaseLabel}</scmReleaseCommitComment>
<scmDevelopmentCommitComment>Post Release @{releaseLabel}</scmDevelopmentCommitComment>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 2267758

Please sign in to comment.