Skip to content

Commit 1a4ce61

Browse files
ctronjpwsutton
authored andcommitted
Fix maven warnings about missing plugin versions (#331)
This change updates the main pom file to include versions for the maven plugins "sources", "javadoc" and "resources" in order to fix a maven build warning. Signed-off-by: Jens Reimann <jreimann@redhat.com>
1 parent 482c914 commit 1a4ce61

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,21 @@
9494
<target>${java.version}</target>
9595
</configuration>
9696
</plugin>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-javadoc-plugin</artifactId>
100+
<version>2.9.1</version>
101+
</plugin>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-resources-plugin</artifactId>
105+
<version>2.4.2</version>
106+
</plugin>
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-source-plugin</artifactId>
110+
<version>3.0.1</version>
111+
</plugin>
97112
<plugin>
98113
<groupId>org.apache.maven.plugins</groupId>
99114
<artifactId>maven-deploy-plugin</artifactId>

0 commit comments

Comments
 (0)