Skip to content

Commit 1365698

Browse files
committed
fix release build profile
1 parent f709598 commit 1365698

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

pom.xml

+4-6
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<maven.compiler.target>8</maven.compiler.target>
4949

5050
<!-- Http Components version -->
51-
<http-components.version>4.5.12</http-components.version>
51+
<http-components.version>4.5.13</http-components.version>
5252

5353
<!-- Specify which Checkstyle ruleset to use -->
5454
<checkstyle.ruleset>build/checkstyle.xml</checkstyle.ruleset>
@@ -258,16 +258,12 @@
258258
<plugin>
259259
<groupId>org.apache.maven.plugins</groupId>
260260
<artifactId>maven-source-plugin</artifactId>
261-
<version>3.2.1</version>
262261
<executions>
263262
<execution>
264263
<id>attach-sources</id>
265264
<goals>
266265
<goal>jar</goal>
267266
</goals>
268-
<configuration>
269-
<source>8</source>
270-
</configuration>
271267
</execution>
272268
</executions>
273269
</plugin>
@@ -276,13 +272,15 @@
276272
<plugin>
277273
<groupId>org.apache.maven.plugins</groupId>
278274
<artifactId>maven-javadoc-plugin</artifactId>
279-
<version>3.2.0</version>
280275
<executions>
281276
<execution>
282277
<id>attach-javadocs</id>
283278
<goals>
284279
<goal>jar</goal>
285280
</goals>
281+
<configuration>
282+
<source>8</source>
283+
</configuration>
286284
</execution>
287285
</executions>
288286
</plugin>

0 commit comments

Comments
 (0)