Skip to content

Commit

Permalink
Fix pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
ulixius9 committed Feb 6, 2024
1 parent 450a98d commit 0ca01eb
Showing 1 changed file with 1 addition and 57 deletions.
58 changes: 1 addition & 57 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
</distributionManagement>
<profiles>
<profile>
<id>ci-cd</id>
<id>release</id>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -286,61 +286,5 @@
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</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 0ca01eb

Please sign in to comment.