Skip to content

Commit

Permalink
plugins for sources and signing
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdaffurn committed Sep 10, 2024
1 parent a0f9b4c commit 89bbecc
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions jvm-runtime/ftl-runtime/common/build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,38 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<deployAtEnd>true</deployAtEnd>
</configuration>
</plugin>
<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>sign-maven-plugin</artifactId>
<version>1.1.0</version>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 89bbecc

Please sign in to comment.