Skip to content

Commit c701b1b

Browse files
revert plugin versions. maven-javadoc-plugin is broken wrt modules.
1 parent bcf8264 commit c701b1b

1 file changed

Lines changed: 45 additions & 50 deletions

File tree

pom.xml

Lines changed: 45 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<hibernate.version>5.4.24.Final</hibernate.version>
3131
<javassist.version>3.29.2-GA</javassist.version>
3232
<jndi.version>0.11.4.1</jndi.version>
33-
<maven.release.version>3.0.1</maven.release.version>
33+
<maven.release.version>2.5.3</maven.release.version>
3434
<metrics.version>3.2.5</metrics.version>
3535
<metrics5.version>5.0.0-rc17</metrics5.version>
3636
<micrometer.version>1.5.10</micrometer.version>
@@ -280,26 +280,20 @@
280280
<plugin>
281281
<groupId>org.apache.maven.plugins</groupId>
282282
<artifactId>maven-clean-plugin</artifactId>
283-
<version>3.4.1</version>
283+
<version>3.2.0</version>
284284
</plugin>
285285

286286
<plugin>
287287
<groupId>org.apache.maven.plugins</groupId>
288288
<artifactId>maven-compiler-plugin</artifactId>
289-
<version>3.14.0</version>
289+
<version>3.10.1</version>
290290
<configuration>
291291
<source>11</source>
292292
<target>11</target>
293293
<compilerArgs>-Xlint</compilerArgs>
294294
</configuration>
295295
</plugin>
296296

297-
<plugin>
298-
<groupId>org.apache.maven.plugins</groupId>
299-
<artifactId>maven-gpg-plugin</artifactId>
300-
<version>3.2.7</version>
301-
</plugin>
302-
303297
<plugin>
304298
<groupId>org.apache.maven.plugins</groupId>
305299
<artifactId>maven-surefire-plugin</artifactId>
@@ -310,46 +304,6 @@
310304
<reuseForks>${sureFireForks11}</reuseForks>
311305
</configuration>
312306
</plugin>
313-
314-
<plugin>
315-
<groupId>org.apache.maven.plugins</groupId>
316-
<artifactId>maven-source-plugin</artifactId>
317-
<version>3.3.1</version>
318-
<configuration>
319-
<!-- outputDirectory>/absolute/path/to/the/output/directory</outputDirectory>
320-
<finalName>filename-of-generated-jar-file</finalName -->
321-
<attach>true</attach>
322-
</configuration>
323-
<executions>
324-
<execution>
325-
<id>attach-sources</id>
326-
<goals>
327-
<goal>jar-no-fork</goal>
328-
</goals>
329-
</execution>
330-
</executions>
331-
</plugin>
332-
333-
<plugin>
334-
<groupId>org.apache.maven.plugins</groupId>
335-
<artifactId>maven-javadoc-plugin</artifactId>
336-
<version>3.6.0</version>
337-
<configuration>
338-
<show>public</show>
339-
<excludePackageNames>com.zaxxer.hikari.hibernate:com.zaxxer.hikari.metrics.*:com.zaxxer.hikari.pool:com.zaxxer.hikari.util</excludePackageNames>
340-
<attach>true</attach>
341-
<maxmemory>1024m</maxmemory>
342-
</configuration>
343-
<executions>
344-
<execution>
345-
<id>bundle-sources</id>
346-
<phase>package</phase>
347-
<goals>
348-
<goal>jar</goal>
349-
</goals>
350-
</execution>
351-
</executions>
352-
</plugin>
353307
</plugins>
354308
</pluginManagement>
355309

@@ -395,7 +349,7 @@
395349
<!-- Generate proxies -->
396350
<groupId>org.codehaus.mojo</groupId>
397351
<artifactId>exec-maven-plugin</artifactId>
398-
<version>3.5.0</version>
352+
<version>1.6.0</version>
399353
<extensions>true</extensions>
400354
<executions>
401355
<execution>
@@ -626,9 +580,50 @@
626580
</configuration>
627581
</plugin>
628582

583+
<plugin>
584+
<groupId>org.apache.maven.plugins</groupId>
585+
<artifactId>maven-source-plugin</artifactId>
586+
<version>3.0.1</version>
587+
<configuration>
588+
<!-- outputDirectory>/absolute/path/to/the/output/directory</outputDirectory>
589+
<finalName>filename-of-generated-jar-file</finalName -->
590+
<attach>true</attach>
591+
</configuration>
592+
<executions>
593+
<execution>
594+
<id>attach-sources</id>
595+
<goals>
596+
<goal>jar-no-fork</goal>
597+
</goals>
598+
</execution>
599+
</executions>
600+
</plugin>
601+
602+
<plugin>
603+
<groupId>org.apache.maven.plugins</groupId>
604+
<artifactId>maven-javadoc-plugin</artifactId>
605+
<version>3.6.0</version>
606+
<configuration>
607+
<show>public</show>
608+
<excludePackageNames>com.zaxxer.hikari.hibernate:com.zaxxer.hikari.metrics.*:com.zaxxer.hikari.pool:com.zaxxer.hikari.util</excludePackageNames>
609+
<attach>true</attach>
610+
<maxmemory>1024m</maxmemory>
611+
</configuration>
612+
<executions>
613+
<execution>
614+
<id>bundle-sources</id>
615+
<phase>package</phase>
616+
<goals>
617+
<goal>jar</goal>
618+
</goals>
619+
</execution>
620+
</executions>
621+
</plugin>
622+
629623
<plugin>
630624
<groupId>org.apache.maven.plugins</groupId>
631625
<artifactId>maven-gpg-plugin</artifactId>
626+
<version>3.0.1</version>
632627
<executions>
633628
<execution>
634629
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)