Skip to content

Commit 2ba34dc

Browse files
committed
fixed driver javadoc (DE-482)
1 parent bc25570 commit 2ba34dc

File tree

3 files changed

+36
-21
lines changed

3 files changed

+36
-21
lines changed

core/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
<dependency>
3838
<groupId>com.google.code.findbugs</groupId>
3939
<artifactId>jsr305</artifactId>
40-
<version>3.0.2</version>
4140
<scope>provided</scope>
4241
</dependency>
4342
</dependencies>

driver/pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,32 @@
119119
<groupId>org.codehaus.mojo</groupId>
120120
<artifactId>flatten-maven-plugin</artifactId>
121121
</plugin>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-javadoc-plugin</artifactId>
125+
<executions>
126+
<execution>
127+
<id>attach-javadocs</id>
128+
<goals>
129+
<goal>jar</goal>
130+
</goals>
131+
<configuration>
132+
<includeDependencySources>true</includeDependencySources>
133+
<excludePackageNames>
134+
com.arangodb.internal,
135+
com.arangodb.internal.*,
136+
com.arangodb.async.internal,
137+
com.arangodb.async.internal.*,
138+
com.arangodb.http,
139+
com.arangodb.serde.jackson,
140+
com.arangodb.serde.jackson.*,
141+
javax.*
142+
</excludePackageNames>
143+
<doclint>none</doclint>
144+
</configuration>
145+
</execution>
146+
</executions>
147+
</plugin>
122148
</plugins>
123149
</build>
124150

@@ -145,6 +171,11 @@
145171
<artifactId>vst-protocol</artifactId>
146172
<scope>runtime</scope>
147173
</dependency>
174+
<dependency>
175+
<groupId>com.google.code.findbugs</groupId>
176+
<artifactId>jsr305</artifactId>
177+
<scope>provided</scope>
178+
</dependency>
148179
<dependency>
149180
<groupId>org.reflections</groupId>
150181
<artifactId>reflections</artifactId>

pom.xml

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,11 @@
163163
<artifactId>slf4j-api</artifactId>
164164
<version>2.0.6</version>
165165
</dependency>
166+
<dependency>
167+
<groupId>com.google.code.findbugs</groupId>
168+
<artifactId>jsr305</artifactId>
169+
<version>3.0.2</version>
170+
</dependency>
166171
<dependency>
167172
<groupId>org.slf4j</groupId>
168173
<artifactId>slf4j-simple</artifactId>
@@ -224,17 +229,6 @@
224229
<groupId>org.apache.maven.plugins</groupId>
225230
<artifactId>maven-javadoc-plugin</artifactId>
226231
<version>3.4.1</version>
227-
<executions>
228-
<execution>
229-
<id>attach-javadocs</id>
230-
<goals>
231-
<goal>jar</goal>
232-
</goals>
233-
<configuration>
234-
<excludePackageNames>**.internal**</excludePackageNames>
235-
</configuration>
236-
</execution>
237-
</executions>
238232
</plugin>
239233
<plugin>
240234
<groupId>org.apache.maven.plugins</groupId>
@@ -396,15 +390,6 @@
396390
<module>jsonb-serde</module>
397391
</modules>
398392
</profile>
399-
<profile>
400-
<id>doclint-java8-disable</id>
401-
<activation>
402-
<jdk>[1.8,)</jdk>
403-
</activation>
404-
<properties>
405-
<doclint>none</doclint>
406-
</properties>
407-
</profile>
408393
<profile>
409394
<id>native</id>
410395
<build>

0 commit comments

Comments
 (0)