Skip to content

Commit e293f77

Browse files
authored
Merge pull request #361 from jfdenise/main
New release requirements, gpg, sources and javadoc
2 parents c93140a + ae3325c commit e293f77

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

pom.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,60 @@ limitations under the License.</inlineHeader>
548548
</plugin>
549549
</plugins>
550550
</build>
551+
<developers>
552+
<developer>
553+
<id>jdenise</id>
554+
<name>Jean-Francois Denise</name>
555+
<organization>Red Hat</organization>
556+
</developer>
557+
</developers>
558+
<profiles>
559+
<profile>
560+
<id>release</id>
561+
<build>
562+
<plugins>
563+
<plugin>
564+
<groupId>org.apache.maven.plugins</groupId>
565+
<artifactId>maven-javadoc-plugin</artifactId>
566+
<executions>
567+
<execution>
568+
<id>attach-javadocs</id>
569+
<goals>
570+
<goal>jar</goal>
571+
</goals>
572+
</execution>
573+
</executions>
574+
</plugin>
575+
<plugin>
576+
<groupId>org.apache.maven.plugins</groupId>
577+
<artifactId>maven-source-plugin</artifactId>
578+
<executions>
579+
<execution>
580+
<id>attach-sources</id>
581+
<goals>
582+
<goal>jar-no-fork</goal>
583+
</goals>
584+
</execution>
585+
</executions>
586+
</plugin>
587+
<plugin>
588+
<groupId>org.apache.maven.plugins</groupId>
589+
<artifactId>maven-gpg-plugin</artifactId>
590+
<version>3.2.7</version>
591+
<executions>
592+
<execution>
593+
<id>sign-artifacts</id>
594+
<phase>verify</phase>
595+
<goals>
596+
<goal>sign</goal>
597+
</goals>
598+
</execution>
599+
</executions>
600+
</plugin>
601+
</plugins>
602+
</build>
603+
</profile>
604+
</profiles>
551605
<scm>
552606
<connection>scm:git:${galleon.repo.scm.connection}</connection>
553607
<developerConnection>scm:git:${galleon.repo.scm.connection}</developerConnection>

0 commit comments

Comments
 (0)