Skip to content

Commit

Permalink
Fixes #220 - Fix release workflow (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Jul 15, 2024
1 parent 019ed50 commit 4ecc3ff
Showing 1 changed file with 53 additions and 31 deletions.
84 changes: 53 additions & 31 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,34 +1,56 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>com.manorrock.aegean</groupId>

<artifactId>project</artifactId>

<version>23.8.0-SNAPSHOT</version>

<packaging>pom</packaging>

<name>Manorrock Aegean - Project</name>

<organization>

<name>Manorrock.com</name>

<url>http://www.manorrock.com</url>

</organization>

<modules>

<module>repo</module>

<module>ui</module>

<module>api</module>

</modules>

<modelVersion>4.0.0</modelVersion>
<groupId>com.manorrock.aegean</groupId>
<artifactId>project</artifactId>
<version>23.8.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Manorrock Aegean - Project</name>
<organization>
<name>Manorrock.com</name>
<url>http://www.manorrock.com</url>
</organization>
<properties>
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
</properties>
<modules>
<module>repo</module>
<module>ui</module>
<module>api</module>
</modules>
<profiles>
<!--

This profile is used when releasing to Maven central.

-->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 4ecc3ff

Please sign in to comment.