Skip to content

Commit fda03ec

Browse files
committedOct 4, 2018
Added plugin for generating javadoc for maven central
1 parent be9444a commit fda03ec

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed
 

‎pom.xml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.graphql-java-kickstart</groupId>
66
<artifactId>graphql-java-tools</artifactId>
7-
<version>5.3.3-SNAPSHOT</version>
7+
<version>5.3.2</version>
88
<packaging>jar</packaging>
99

1010
<name>GraphQL Java Tools</name>
@@ -209,6 +209,19 @@
209209
</execution>
210210
</executions>
211211
</plugin>
212+
<plugin>
213+
<groupId>org.apache.maven.plugins</groupId>
214+
<artifactId>maven-javadoc-plugin</artifactId>
215+
<version>3.0.1</version>
216+
<executions>
217+
<execution>
218+
<id>attach-javadocs</id>
219+
<goals>
220+
<goal>jar</goal>
221+
</goals>
222+
</execution>
223+
</executions>
224+
</plugin>
212225
</plugins>
213226
</build>
214227
</profile>

0 commit comments

Comments
 (0)
Please sign in to comment.