8000 updated javadoc plugin · arangodb/arangodb-java-driver@df7b6a2 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit df7b6a2

Browse files
committed
updated javadoc plugin
1 parent 820c090 commit df7b6a2

File tree

8 files changed

+20
-134
lines changed

8 files changed

+20
-134
lines changed

core/pom.xml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -90,26 +90,6 @@
9090
</execution>
9191
</executions>
9292
</plugin>
93-
<plugin>
94-
<groupId>org.apache.maven.plugins</groupId>
95-
<artifactId>maven-javadoc-plugin</artifactId>
96-
<version>3.5.0</version>
97-
<executions>
98-
<execution>
99-
<id>attach-javadocs</id>
100-
<goals>
101-
<goal>jar</goal>
102-
</goals>
103-
<configuration>
104-
<excludePackageNames>
105-
com.arangodb.internal,
106-
com.arangodb.internal.*
107-
</excludePackageNames>
108-
<doclint>none</doclint>
109-
</configuration>
110-
</execution>
111-
</executions>
112-
</plugin>
11393
</plugins>
11494
</build>
11595

driver/pom.xml

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -21,35 +21,12 @@
2121

2222
<build>
2323
<plugins>
24-
<plugin>
25-
<groupId>org.codehaus.mojo</groupId>
26-
<artifactId>flatten-maven-plugin</artifactId>
27-
<version>1.4.1</version>
28-
</plugin>
2924
<plugin>
3025
<groupId>org.apache.maven.plugins</groupId>
3126
<artifactId>maven-javadoc-plugin</artifactId>
32-
<version>3.5.0</version>
33-
<executions>
34-
<execution>
35-
<id>attach-javadocs</id>
36-
<goals>
37-
<goal>jar</goal>
38-
</goals>
39-
<configuration>
40-
<includeDependencySources>true</includeDependencySources>
41-
<excludePackageNames>
42-
com.arangodb.internal,
43-
com.arangodb.internal.*,
44-
com.arangodb.http,
45-
com.arangodb.serde.jackson,
46-
com.arangodb.serde.jackson.*,
47-
javax.*
48-
</excludePackageNames>
49-
<doclint>none</doclint>
50-
</configuration>
51-
</execution>
52-
</executions>
27+
<configuration>
28+
<includeDependencySources>true</includeDependencySources>
29+
</configuration>
5330
</plugin>
5431
</plugins>
5532
</build>

http-protocol/pom.xml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,4 @@
3232
</dependency>
3333
</dependencies>
3434

35-
<build>
36-
<plugins>
37-
<plugin>
38-
<groupId>org.apache.maven.plugins</groupId>
39-
<artifactId>maven-javadoc-plugin</artifactId>
40-
<version>3.5.0</version>
41-
<executions>
42-
<execution>
43-
<id>attach-javadocs</id>
44-
<goals>
45-
<goal>jar</goal>
46-
</goals>
47-
<configuration>
48-
<doclint>none</doclint>
49-
</configuration>
50-
</execution>
51-
</executions>
52-
</plugin>
53-
</plugins>
54-
</build>
55-
5635
</project>

jackson-serde-json/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,4 @@
4242
</dependency>
4343
</dependencies>
4444

45-
<build>
46-
<plugins>
47-
<plugin>
48-
<groupId>org.apache.maven.plugins</groupId>
49-
<artifactId>maven-javadoc-plugin</artifactId>
50-
<version>3.5.0</version>
51-
<executions>
52-
<execution>
53-
<id>attach-javadocs</id>
54-
<goals>
55-
<goal>jar</goal>
56-
</goals>
57-
<configuration>
58-
<excludePackageNames>com.arangodb.serde.jackson.internal</excludePackageNames>
59-
<doclint>none</doclint>
60-
</configuration>
61-
</execution>
62-
</executions>
63-
</plugin>
64-
</plugins>
65-
</build>
66-
6745
</project>

jackson-serde-vpack/pom.xml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,25 +42,4 @@
4242
</dependency>
4343
</dependencies>
4444

45-
<build>
46-
<plugins>
47-
<plugin>
48-
<groupId>org.apache.maven.plugins</groupId>
49-
<artifactId>maven-javadoc-plugin</artifactId>
50-
<version>3.5.0</version>
51-
<executions>
52-
<execution>
53-
<id>attach-javadocs</id>
54-
<goals>
55-
<goal>jar</goal>
56-
</goals>
57-
<configuration>
58-
<doclint>none</doclint>
59-
</configuration>
60-
</execution>
61-
</executions>
62-
</plugin>
63-
</plugins>
64-
</build>
65-
6645
</project>

release-parent/pom.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,23 @@
3535
<plugin>
3636
<groupId>org.apache.maven.plugins</groupId>
3737
<artifactId>maven-javadoc-plugin</artifactId>
38-
<version>3.5.0</version>
38+
<version>3.8.0</version>
39+
<executions>
40+
<execution>
41+
<goals>
42+
<goal>jar</goal>
43+
</goals>
44+
<configuration>
45+
<excludePackageNames>
46+
com.arangodb.internal,
47+
com.arangodb.internal.*,
48+
com.arangodb.serde.jackson.internal,
49+
javax.*
50+
</excludePackageNames>
51+
<doclint>none</doclint>
52+
</configuration>
53+
</execution>
54+
</executions>
3955
</plugin>
4056
<plugin>
4157
<groupId>org.apache.maven.plugins</groupId>

shaded/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@
159159
<plugin>
160160
<groupId>org.codehaus.mojo</groupId>
161161
<artifactId>flatten-maven-plugin</artifactId>
162-
<version>1.4.1</version>
163162
</plugin>
164163
</plugins>
165164
</build>

vst-protocol/pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,4 @@
3232
</dependency>
3333
</dependencies>
3434

35-
<build>
36-
<plugins>
37-
<plugin>
38-
<groupId>org.apache.maven.plugins</groupId>
39-
<artifactId>maven-javadoc-plugin</artifactId>
40-
<version>3.5.0</version>
41-
<executions>
42-
<execution>
43-
<id>attach-javadocs</id>
44-
<goals>
45-
<goal>jar</goal>
46-
</goals>
47-
<configuration>
48-
<excludePackageNames>com.arangodb.vst.internal</excludePackageNames>
49-
<doclint>none</doclint>
50-
</configuration>
51-
</execution>
52-
</executions>
53-
</plugin>
54-
</plugins>
55-
</build>
56-
5735
</project>

0 commit comments

Comments
 (0)
0