Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Commit 1ac7db7

Browse files
Add plugin for maven source and javadoc (#7)
* Add desc and bump javadoc and sources plugin versions Signed-off-by: Ivan Pavlovic <[email protected]>
1 parent 2fb5721 commit 1ac7db7

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

pom.xml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>java-client</artifactId>
88
<version>0.0.1</version>
99
<packaging>jar</packaging>
10-
10+
<description>Java client library for the Armada project</description>
1111
<name>java-client</name>
1212
<url>https://github.com/armadaproject/java-client</url>
1313

@@ -253,6 +253,32 @@
253253
</properties>
254254
<build>
255255
<plugins>
256+
<plugin>
257+
<groupId>org.apache.maven.plugins</groupId>
258+
<artifactId>maven-source-plugin</artifactId>
259+
<version>3.3.0</version>
260+
<executions>
261+
<execution>
262+
<id>attach-sources</id>
263+
<goals>
264+
<goal>jar-no-fork</goal>
265+
</goals>
266+
</execution>
267+
</executions>
268+
</plugin>
269+
<plugin>
270+
<groupId>org.apache.maven.plugins</groupId>
271+
<artifactId>maven-javadoc-plugin</artifactId>
272+
<version>3.5.0</version>
273+
<executions>
274+
<execution>
275+
<id>attach-javadocs</id>
276+
<goals>
277+
<goal>jar</goal>
278+
</goals>
279+
</execution>
280+
</executions>
281+
</plugin>
256282
<!-- detect os -->
257283
<plugin>
258284
<groupId>kr.motd.maven</groupId>

0 commit comments

Comments
 (0)