Skip to content

Commit

Permalink
release 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
evis committed May 5, 2024
1 parent a8f5e2c commit 2692846
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Add plugin into `plugins` node of `pom.xml`:
<plugin>
<groupId>io.github.evis</groupId>
<artifactId>scalafix-maven-plugin_2.13</artifactId>
<version>0.1.8_0.11.0</version>
<version>0.1.9_0.11.0</version>
</plugin>
</plugins>
```

Where `0.1.8` is version of the plugin itself, and `0.11.0` is version of Scalafix invoked by the plugin.
Where `0.1.9` is version of the plugin itself, and `0.11.0` is version of Scalafix invoked by the plugin.

Then, you need to setup a file `.scalafix.conf` in the root directory of your Maven project (note the dot at the start of filename). You can find `.scalafix.conf` guide [here](https://scalacenter.github.io/scalafix/docs/users/configuration.html).

Expand Down Expand Up @@ -67,7 +67,7 @@ Or using `mainSourceDirectories` configuration option of the plugin, e.g.:
<plugin>
<groupId>io.github.evis</groupId>
<artifactId>scalafix-maven-plugin_2.13</artifactId>
<version>0.1.8_0.11.0</version>
<version>0.1.9_0.11.0</version>
<configuration>
<mainSourceDirectories>
<directory>src/main/my-sources-dir</directory>
Expand Down Expand Up @@ -109,7 +109,7 @@ Also, you can pass parameters via `pom.xml`:
<plugin>
<groupId>io.github.evis</groupId>
<artifactId>scalafix-maven-plugin_2.13</artifactId>
<version>0.1.8_0.11.0</version>
<version>0.1.9_0.11.0</version>
<configuration>
<mode>CHECK</mode>
<skipTest>true</skipTest>
Expand All @@ -124,7 +124,7 @@ If you want to use external rules, add jars containing rules to dependencies of
<plugin>
<groupId>io.github.evis</groupId>
<artifactId>scalafix-maven-plugin_2.13</artifactId>
<version>0.1.8_0.11.0</version>
<version>0.1.9_0.11.0</version>
<dependencies>
<dependency>
<groupId>com.nequissimus</groupId>
Expand Down Expand Up @@ -223,7 +223,7 @@ This is equivalent to `sbt "scalafixEnable; scalafixAll github:zio/zio/Zio2Upgra
<plugin>
<groupId>io.github.evis</groupId>
<artifactId>scalafix-maven-plugin_${scala.version.short}</artifactId>
<version>0.1.8_${scalafix.version}</version>
<version>0.1.9_${scalafix.version}</version>
<dependencies>
<dependency>
<groupId>ch.epfl.scala</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<url>https://github.com/evis/scalafix-maven-plugin</url>
<groupId>io.github.evis</groupId>
<artifactId>scalafix-maven-plugin_${scala.major.version}</artifactId>
<version>0.1.8_${scalafix.version}</version>
<version>0.1.9_${scalafix.version}</version>
<licenses>
<license>
<name>BSD-3-Clause</name>
Expand Down

0 comments on commit 2692846

Please sign in to comment.