Skip to content

Commit

Permalink
Update various plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfav committed Feb 15, 2023
1 parent 7d0a25c commit 1626575
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ You may disable the check by setting `commonConfig.jacoco.check.disable` to `tru

### Reference to Project Root

If you need to use e.g. a file that lives within your project (e.g. the keystore file for jar-siging) make sure you
If you need to use e.g. a file that lives within your project (e.g. the keystore file for jar-signing) make sure you
use the correct base path. There are two useful variables to help you:

* `${project.basedir}` is the path of your current module
* `${session.executionRootDirectory}` is the root path of your projects (and all your modules) - can be used in
sub-modules
submodules

### Deploy

Expand Down Expand Up @@ -151,7 +151,7 @@ You may check for updates of any plugins or dependencies with
./mvnw versions:display-dependency-updates
```

### Versions Plugin
### Versions-Plugin

Check for possible dependency updates

Expand Down
15 changes: 11 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,18 @@
<version>3.1.0</version>
</plugin>

<!-- site -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>4.0.0-M5</version>
</plugin>

<!-- javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<version>3.5.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -194,7 +201,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>8.0.2</version>
<version>8.1.0</version>
<configuration>
<failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability>
<cveValidForHours>24</cveValidForHours>
Expand All @@ -213,7 +220,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M8</version>
<version>3.0.0-M9</version>
</plugin>

<!-- checkstyle -->
Expand Down Expand Up @@ -529,7 +536,7 @@

<!-- COMPILER PROFILES
Use this either with your cmd line or in .mvn/maven.config. Example "-DcommonConfig.compiler.profile=jdk11".
This sets the JDK and additionally configurations, eg. for errorprone for the compiler. -->
This sets the JDK and additionally configurations, e.g. for errorprone for the compiler. -->
<profiles>
<profile>
<id>JDK_9_PLUS_AUTO_CONFIG</id>
Expand Down

0 comments on commit 1626575

Please sign in to comment.