Skip to content
This repository was archived by the owner on Apr 15, 2024. It is now read-only.

Commit 44d63fc

Browse files
committed
update maven plugins
1 parent 404ee35 commit 44d63fc

File tree

1 file changed

+27
-5
lines changed

1 file changed

+27
-5
lines changed

pom.xml

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<maven.compiler.target>${project.build.targetVersion}</maven.compiler.target>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<netbeans.hint.jdkPlatform>JDK_${project.build.targetVersion}</netbeans.hint.jdkPlatform>
15-
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
15+
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
1616
</properties>
1717
<organization>
1818
<name>B3Partners B.V.</name>
@@ -33,12 +33,12 @@
3333
<repository>
3434
<id>repo.b3p.nl</id>
3535
<name>B3P release Repository</name>
36-
<url>http://repo.b3p.nl/nexus/content/repositories/releases/</url>
36+
<url>https://repo.b3p.nl/nexus/repository/releases/</url>
3737
</repository>
3838
<snapshotRepository>
3939
<id>repo.b3p.nl</id>
4040
<name>B3P snapshot Repository</name>
41-
<url>http://repo.b3p.nl/nexus/content/repositories/snapshots/</url>
41+
<url>https://repo.b3p.nl/nexus/repository/snapshots/</url>
4242
</snapshotRepository>
4343
<site>
4444
<id>gh-pages</id>
@@ -54,7 +54,7 @@
5454
</plugin>
5555
<plugin>
5656
<artifactId>maven-site-plugin</artifactId>
57-
<version>3.7</version>
57+
<version>3.7.1</version>
5858
<configuration>
5959
<skipDeploy>true</skipDeploy>
6060
<generateSitemap>true</generateSitemap>
@@ -81,13 +81,35 @@
8181
</execution>
8282
</executions>
8383
</plugin>
84+
<plugin>
85+
<artifactId>maven-enforcer-plugin</artifactId>
86+
<version>3.0.0-M2</version>
87+
<executions>
88+
<execution>
89+
<id>enforce-maven</id>
90+
<goals>
91+
<goal>enforce</goal>
92+
</goals>
93+
<configuration>
94+
<rules>
95+
<requireMavenVersion>
96+
<version>[3.3.9,)</version>
97+
</requireMavenVersion>
98+
<requireJavaVersion>
99+
<version>${java.version}</version>
100+
</requireJavaVersion>
101+
</rules>
102+
</configuration>
103+
</execution>
104+
</executions>
105+
</plugin>
84106
</plugins>
85107
</build>
86108
<reporting>
87109
<plugins>
88110
<plugin>
89111
<artifactId>maven-project-info-reports-plugin</artifactId>
90-
<version>2.9</version>
112+
<version>3.0.0</version>
91113
</plugin>
92114
<plugin>
93115
<artifactId>maven-javadoc-plugin</artifactId>

0 commit comments

Comments
 (0)