Skip to content

Commit

Permalink
Add plugin for maven source and javadoc (#7)
Browse files Browse the repository at this point in the history
* Add desc and bump javadoc and sources plugin versions

Signed-off-by: Ivan Pavlovic <pavlovic.ivan.26@gmail.com>
  • Loading branch information
pavlovic-ivan authored Dec 23, 2024
1 parent 2fb5721 commit 1ac7db7
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>java-client</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>

<description>Java client library for the Armada project</description>
<name>java-client</name>
<url>https://github.com/armadaproject/java-client</url>

Expand Down Expand Up @@ -253,6 +253,32 @@
</properties>
<build>
<plugins>
<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-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- detect os -->
<plugin>
<groupId>kr.motd.maven</groupId>
Expand Down

0 comments on commit 1ac7db7

Please sign in to comment.