Skip to content

Commit

Permalink
Updated POM and readme versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ozsie committed Aug 2, 2023
1 parent 84c2255 commit c7e54bb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ See [below](#goals) how to execute after configuring.
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -32,7 +32,7 @@ See [below](#goals) how to execute after configuring.
Using the above configuration Detekt will scan source files in `${basedir}/src` and output the results in `${basedir}/detekt`.

## Configuration
All parameters available to Detekt version _1.23.0_ can be configured in the plugin.
All parameters available to Detekt version _1.23.1_ can be configured in the plugin.

### Local rule configuration
The plugin supports local files as configuration to be passed to Detekt.
Expand All @@ -42,7 +42,7 @@ The plugin supports local files as configuration to be passed to Detekt.
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -66,7 +66,7 @@ The plugin supports remote config over http and https.
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -93,7 +93,7 @@ See [Detekt Marketplace](https://detekt.dev/marketplace) for list of known plugi
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -106,7 +106,7 @@ See [Detekt Marketplace](https://detekt.dev/marketplace) for list of known plugi
<dependency>
<groupId>io.gitlab.arturbosch.detekt</groupId>
<artifactId>detekt-rules-libraries</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
</dependency>
</dependencies>
</plugin>
Expand All @@ -121,7 +121,7 @@ See [Detekt Marketplace](https://detekt.dev/marketplace) for list of known plugi
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -147,7 +147,7 @@ See [Detekt documentation](https://detekt.dev/docs/introduction/reporting) for s
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<executions>
<execution>
<phase>verify</phase>
Expand All @@ -173,7 +173,7 @@ This allows the configuration be used when running goals standalone.
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<configuration>
<report>
<report>txt:reports/detekt.txt</report>
Expand Down Expand Up @@ -203,7 +203,7 @@ This will generate a baseline file for each module named as `baseline-<module-na
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<configuration>
<baseline>baseline.xml</baseline>
</configuration>
Expand Down Expand Up @@ -244,7 +244,7 @@ See [Issue #144](https://github.com/Ozsie/detekt-maven-plugin/issues/144) for an
<plugin>
<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<configuration>
<baseline>baseline.xml</baseline>
<classPath>${generated.classpath}</classPath>
Expand Down Expand Up @@ -302,7 +302,7 @@ _Example_

## Contributors
<a href="https://github.com/detekt/detekt/graphs/contributors">
<img src="https://contrib.rocks/image?repo=ozsie/detekt-maven-plugin" />
<img src="https://contrib.rocks/image?repo=ozsie/detekt-maven-plugin" alt="contributors"/>
</a>

## License
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.ozsie</groupId>
<artifactId>detekt-maven-plugin</artifactId>
<version>1.23.0</version>
<version>1.23.1</version>
<packaging>maven-plugin</packaging>

<name>detekt-maven-plugin Maven Plugin</name>
Expand Down

0 comments on commit c7e54bb

Please sign in to comment.