Skip to content

Commit

Permalink
release 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
evis committed Aug 6, 2022
1 parent eb6d0bd commit 8e309ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 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.6_0.10.0</version>
<version>0.1.7_0.10.0</version>
</plugin>
</plugins>
```

Where `0.1.6` is version of the plugin itself, and `0.9.33` is version of Scalafix invoked by the plugin.
Where `0.1.7` is version of the plugin itself, and `0.9.33` 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 @@ -58,7 +58,7 @@ By default, sources should be located inside `src/main/scala` directory. Though,
<plugin>
<groupId>io.github.evis</groupId>
<artifactId>scalafix-maven-plugin_2.13</artifactId>
<version>0.1.6_0.10.0</version>
<version>0.1.7_0.10.0</version>
<configuration>
<sourceDirectory>src/main/my-sources-dir</sourceDirectory>
</configuration>
Expand Down Expand Up @@ -96,7 +96,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.6_0.10.0</version>
<version>0.1.7_0.10.0</version>
<configuration>
<mode>CHECK</mode>
<skipTest>true</skipTest>
Expand All @@ -111,7 +111,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.6_0.10.0</version>
<version>0.1.7_0.10.0</version>
<dependencies>
<dependency>
<groupId>com.nequissimus</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.6_${scalafix.version}</version>
<version>0.1.7_${scalafix.version}</version>
<licenses>
<license>
<name>BSD-3-Clause</name>
Expand Down

0 comments on commit 8e309ed

Please sign in to comment.