File tree Expand file tree Collapse file tree 3 files changed +50
-9
lines changed Expand file tree Collapse file tree 3 files changed +50
-9
lines changed Original file line number Diff line number Diff line change 22
22
</properties >
23
23
24
24
<profiles >
25
- <profile >
26
- <id >doclint-java8-disable</id >
27
- <activation >
28
- <jdk >[1.8,)</jdk >
29
- </activation >
30
- <properties >
31
- <doclint >none</doclint >
32
- </properties >
33
- </profile >
34
25
<profile >
35
26
<id >no-graalvm</id >
36
27
<activation >
Original file line number Diff line number Diff line change 377
377
<module >jsonb-serde</module >
378
378
</modules >
379
379
</profile >
380
+ <profile >
381
+ <id >doclint-java8-disable</id >
382
+ <activation >
383
+ <jdk >[1.8,)</jdk >
384
+ </activation >
385
+ <properties >
386
+ <doclint >none</doclint >
387
+ </properties >
388
+ </profile >
380
389
<profile >
381
390
<id >native</id >
382
391
<build >
Original file line number Diff line number Diff line change 130
130
</execution >
131
131
</executions >
132
132
</plugin >
133
+ <plugin >
134
+ <groupId >org.apache.maven.plugins</groupId >
135
+ <artifactId >maven-dependency-plugin</artifactId >
136
+ <version >3.4.0</version >
137
+ <executions >
138
+ <execution >
139
+ <id >unpack-shaded-sources</id >
140
+ <phase >package</phase >
141
+ <goals >
142
+ <goal >unpack</goal >
143
+ </goals >
144
+ <configuration >
145
+ <artifactItems >
146
+ <artifactItem >
147
+ <groupId >com.arangodb</groupId >
148
+ <artifactId >arangodb-java-driver-shaded</artifactId >
149
+ <type >jar</type >
150
+ <classifier >sources</classifier >
151
+ <outputDirectory >${project.build.directory} /shaded-sources</outputDirectory >
152
+ </artifactItem >
153
+ </artifactItems >
154
+ </configuration >
155
+ </execution >
156
+ </executions >
157
+ </plugin >
158
+ <plugin >
159
+ <groupId >org.apache.maven.plugins</groupId >
160
+ <artifactId >maven-javadoc-plugin</artifactId >
161
+ <executions >
162
+ <execution >
163
+ <id >attach-javadocs</id >
164
+ <goals >
165
+ <goal >jar</goal >
166
+ </goals >
167
+ <configuration >
168
+ <sourcepath >${project.build.directory} /shaded-sources</sourcepath >
169
+ <excludePackageNames >com.arangodb.shaded.**,**.internal**</excludePackageNames >
170
+ </configuration >
171
+ </execution >
172
+ </executions >
173
+ </plugin >
133
174
<plugin >
134
175
<groupId >org.codehaus.mojo</groupId >
135
176
<artifactId >flatten-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments