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 7ec8fb6 commit 4a39cfa
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 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.thumbnail.ext</groupId>
<artifactId>nuxeo-thumbnail-ext-parent</artifactId>
<version>2025.0.0-SNAPSHOT</version>
<name>Nuxeo thumbnail ext parent</name>
<description>An extension for better thumbnail generation</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-thumbnail-ext-core</module>
<module>nuxeo-thumbnail-ext-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-thumbnail-ext</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,4 +92,21 @@
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<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 4a39cfa

Please sign in to comment.