Skip to content

Commit

Permalink
Add missing pom elements for release
Browse files Browse the repository at this point in the history
hugithordarson committed Jun 27, 2023
1 parent 43f88cf commit 242da01
Showing 1 changed file with 85 additions and 17 deletions.
102 changes: 85 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -9,7 +9,8 @@
<version>1.0.0</version>

<name>vermilingua-maven-plugin</name>
<description>A pure Maven plugin for building WebObjects and Project Wonder applications and frameworks.</description>
<description>A pure Maven plugin for building WebObjects and Project Wonder
applications and frameworks.</description>
<url>https://github.com/undur/vermilingua-maven-plugin</url>

<organization>
@@ -45,22 +46,78 @@

<scm>
<connection>scm:git:git://github.com/undur/vermilingua-maven-plugin.git</connection>
<developerConnection>scm:git:ssh://github.com:undur/vermilingua-maven-plugin.git</developerConnection>
<developerConnection>
scm:git:ssh://github.com:undur/vermilingua-maven-plugin.git</developerConnection>
<url>https://github.com/undur/vermilingua-maven-plugin/tree/master</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>
https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</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>2.9.1</version>
<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.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<pluginManagement>
<plugins>
@@ -75,36 +132,36 @@
<!--
<plugin>
<groupId>com.soebes.itf.jupiter.extension</groupId>
<artifactId>itf-maven-plugin</artifactId>
<artifactId>itf-maven-plugin</artifactId>
<version>0.11.0</version>
<executions>
<executions>
<execution>
<id>installing</id>
<phase>pre-integration-test</phase>
<phase>pre-integration-test</phase>
<goals>
<goal>install</goal>
<goal>install</goal>
<goal>resources-its</goal>
</goals>
</execution>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<systemProperties>
<maven.version>${maven.version}</maven.version>
<maven.home>${maven.home}</maven.home>
<maven.version>${maven.version}</maven.version>
<maven.home>${maven.home}</maven.home>
</systemProperties>
</configuration>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</execution>
</executions>
</plugin>
-->
@@ -113,6 +170,17 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>

<testResources>

0 comments on commit 242da01

Please sign in to comment.