Skip to content

Commit

Permalink
Fix some pom-related issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stijn-dejongh committed Nov 20, 2024
1 parent dc53626 commit 8d58a9c
Showing 1 changed file with 76 additions and 1 deletion.
77 changes: 76 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@
an object.
</description>

<url>https://github.com/sddevelopment-be/modular-validators</url>
<licenses>
<license>
<name>EUPL v.1.2</name>
<url>https://github.com/sddevelopment-be/modular-validators/blob/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:ssh://git@github.com/sddevelopment-be/modular-validators.git</connection>
<url>${project.url}</url>
<tag>HEAD</tag>
</scm>

<organization>
<name>SD Development</name>
<url>https://www.sddevelopment.be</url>
Expand Down Expand Up @@ -60,7 +75,7 @@
<sonar.projectKey>sddevelopment_modular-validators</sonar.projectKey>
<sonar.coverage.jacoco.xmlReportPaths>${jacoco.build.dir}/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>

<code.utils.version>1.0.1-SNAPSHOT</code.utils.version>
<code.utils.version>1.0.1</code.utils.version>
<rewrite.version>5.36.0</rewrite.version>
</properties>
<dependencyManagement>
Expand Down Expand Up @@ -378,4 +393,64 @@
</snapshots>
</repository>
</repositories>

<profiles>
<profile>
<id>publisher</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<autoPublish>false</autoPublish>
<deploymentName>${project.artifactId}:${project.version}</deploymentName>
<waitUntil>validated</waitUntil>
<publishingServerId>ossrh</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 8d58a9c

Please sign in to comment.