Skip to content

Commit 27531fe

Browse files
authored
Merge pull request #77 from paseto-toolkit/fix-javadoc
Replace javadoc with groovy doc for Integration Test module
2 parents 45f3890 + e5f9f9b commit 27531fe

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

integration-tests/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,31 @@
6262
<artifactId>bcprov-jdk15on</artifactId>
6363
</dependency>
6464
</dependencies>
65+
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<!-- replace javadoc with groovydoc for ONLY this module -->
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-javadoc-plugin</artifactId>
72+
<configuration>
73+
<skip>true</skip>
74+
</configuration>
75+
</plugin>
76+
<plugin>
77+
<groupId>com.bluetrainsoftware.maven</groupId>
78+
<artifactId>groovydoc-maven-plugin</artifactId>
79+
<version>2.1</version>
80+
<executions>
81+
<execution>
82+
<id>attach-docs</id>
83+
<phase>package</phase>
84+
<goals>
85+
<goal>attach-docs</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
</plugins>
91+
</build>
6592
</project>

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,11 @@
199199
<artifactId>maven-compiler-plugin</artifactId>
200200
<version>3.8.1</version>
201201
</plugin>
202+
<plugin>
203+
<groupId>org.apache.maven.plugins</groupId>
204+
<artifactId>maven-javadoc-plugin</artifactId>
205+
<version>3.3.1</version>
206+
</plugin>
202207
<plugin>
203208
<groupId>com.github.spotbugs</groupId>
204209
<artifactId>spotbugs-maven-plugin</artifactId>
@@ -453,7 +458,6 @@
453458
<plugin>
454459
<groupId>org.apache.maven.plugins</groupId>
455460
<artifactId>maven-javadoc-plugin</artifactId>
456-
<version>3.3.1</version>
457461
</plugin>
458462
<plugin>
459463
<groupId>com.mycila</groupId>

0 commit comments

Comments
 (0)