evis/scalafix-maven-plugin

scala/collection/IterableOnce is missing for 2.13

besok opened this issue · 0 comments

besok commented

Got the exception:

[ERROR] Failed to execute goal io.github.evis:scalafix-maven-plugin:0.1.4_0.9.23:scalafix (default-cli) on project commons: Execution default-cli of goal io.github.evis:scalafix-maven-plugin:0.1.4_0.9.23:scalafix failed: A required class was missing while executing io.github.evis:scalafix-maven-plugin:0.1.4_0.9.23:scalafix: scala/collection/IterableOnce

trying to use the scalafix with 2.13 and scalatest so therefore I have in my pom:

           <plugin>
                <groupId>io.github.evis</groupId>
                <artifactId>scalafix-maven-plugin</artifactId>
                <version>0.1.4_0.9.23</version>
                <dependencies>
                    <dependency>
                        <groupId>org.scalatest</groupId>
                        <artifactId>autofix_2.13</artifactId>
                        <version>3.0.8-1</version>
                    </dependency>
                </dependencies>
            </plugin>