Skip to content

Commit

Permalink
update readme and formatter plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
timmolter committed Dec 1, 2023
1 parent d56e61f commit c7dd935
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,14 @@ The current snapshot version is:

Instruction | Command
--------------------------------- | ------------------------
run unit tests | <kbd>mvn clean test</kbd>
run unit and integration tests | <kbd>mvn clean verify -DskipIntegrationTests=false</kbd>
install in local Maven repo | <kbd>mvn clean install</kbd>
create project javadocs | <kbd>mvn javadoc:aggregate</kbd>
generate dependency tree | <kbd>mvn dependency:tree</kbd>
check for dependency updates | <kbd>mvn versions:display-dependency-updates</kbd>
check for plugin updates | <kbd>mvn versions:display-plugin-updates</kbd>
code format | <kbd>mvn com.coveo:fmt-maven-plugin:format</kbd>
run unit tests | `mvn clean test`
run unit and integration tests | `mvn clean verify -DskipIntegrationTests=false`
install in local Maven repo | `mvn clean install`
create project javadocs | `mvn javadoc:aggregate`
generate dependency tree | `mvn dependency:tree`
check for dependency updates | `mvn versions:display-dependency-updates`
check for plugin updates | `mvn versions:display-plugin-updates`
code format | `mvn com.spotify.fmt:fmt-maven-plugin:format`

## Bugs

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -563,9 +563,9 @@
</configuration>
</plugin>
<plugin>
<groupId>com.coveo</groupId>
<groupId>com.spotify.fmt</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>2.13</version>
<version>2.21.1</version>
<configuration>
<filesNamePattern>.*\.java</filesNamePattern>
<skip>false</skip>
Expand Down

0 comments on commit c7dd935

Please sign in to comment.