Skip to content

Releases: SimonJPegg/mvn_scalafmt

Code tidy up and optional skip of source directories

21 Oct 13:58
Compare
Choose a tag to compare

Code tidy up and optional skip of source directories

Fixed issue with deploy process

13 Oct 12:08
v0.8_1.5.1
Compare
Choose a tag to compare

Fixed issue with deploy process that was pulling scala 2.12 jar into 2.11 releases.

Make configuration file optional

09 Feb 21:49
702e2ba
Compare
Choose a tag to compare
  • Make configuration file optional
  • Bumped Scala version to match Scalafmt

Added 1.4.0 support

02 Feb 21:45
Compare
Choose a tag to compare

Add a skip property

09 Dec 16:20
Compare
Choose a tag to compare

Also format test sources

01 Aug 09:55
Compare
Choose a tag to compare

Bugfixes

27 Jul 20:43
Compare
Choose a tag to compare
  • NullPointerException when no parameters in Maven configuration.
  • All files in current directory formatted instead of all files in current project (it's a problem on a multi-module projects or when you run maven from another directory).

Revised versioning

15 Jun 10:37
Compare
Choose a tag to compare

Fixed NPE when no parameters are supplied.
Version number is now _

Version number now matches scalafmt version

10 Jun 11:47
Compare
Choose a tag to compare

Plugin versions now match the Scalafmt version they use.

Added additional command line options

08 Jun 17:34
Compare
Choose a tag to compare

Some command line options (like --diff and --diff-branch cannot be
specified in the scalafmt configuration file. This makes a change so
they can be passed in from the pom.xml as follows:

<plugin>
  <groupId>org.antipathy</groupId>
  <artifactId>mvn-scalafmt</artifactId>
  <version>0.2</version>
  <configuration>
    <parameters>--diff-branch some-branch</paramaters>
    <configLocation>${project.basedir}/path/to/scalafmt.conf</configLocation>
  </configuration>
</plugin>