EditorConfig Maven Plugin Parent

See editorconfig-maven-plugin

License

License

Categories

Categories

Maven Build Tools config Application Layer Libs Configuration
GroupId

GroupId

org.ec4j.maven
ArtifactId

ArtifactId

editorconfig-maven-plugin-parent
Last Version

Last Version

0.1.1
Release Date

Release Date

Type

Type

pom
Description

Description

EditorConfig Maven Plugin Parent
See editorconfig-maven-plugin
Project URL

Project URL

https://github.com/ec4j/editorconfig-maven-plugin
Source Code Management

Source Code Management

https://github.com/ec4j/editorconfig-maven-plugin

Download editorconfig-maven-plugin-parent

How to add to project

<!-- https://jarcasting.com/artifacts/org.ec4j.maven/editorconfig-maven-plugin-parent/ -->
<dependency>
    <groupId>org.ec4j.maven</groupId>
    <artifactId>editorconfig-maven-plugin-parent</artifactId>
    <version>0.1.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/org.ec4j.maven/editorconfig-maven-plugin-parent/
implementation 'org.ec4j.maven:editorconfig-maven-plugin-parent:0.1.1'
// https://jarcasting.com/artifacts/org.ec4j.maven/editorconfig-maven-plugin-parent/
implementation ("org.ec4j.maven:editorconfig-maven-plugin-parent:0.1.1")
'org.ec4j.maven:editorconfig-maven-plugin-parent:pom:0.1.1'
<dependency org="org.ec4j.maven" name="editorconfig-maven-plugin-parent" rev="0.1.1">
  <artifact name="editorconfig-maven-plugin-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='org.ec4j.maven', module='editorconfig-maven-plugin-parent', version='0.1.1')
)
libraryDependencies += "org.ec4j.maven" % "editorconfig-maven-plugin-parent" % "0.1.1"
[org.ec4j.maven/editorconfig-maven-plugin-parent "0.1.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • editorconfig-maven-plugin

editorconfig-maven-plugin

License Maven Central Travis CI build status AppVeyor Windows CI build status

editorconfig-maven-plugin is a Maven plugin for checking whether project files comply with format rules defined in .editorconfig files and eventually also for fixing the violations.

⚠️
editorconfig-maven-plugin is new. Expect issues of all kinds which is not to say that you should not report them :)

Basic usage

editorconfig-maven-plugin requires Java 7+ and Maven 3.3.1+.

To make the build fail if any of your source files does not comply with .editorconfig rules, add the following to your project:

  <plugin>
    <groupId>org.ec4j.maven</groupId>
    <artifactId>editorconfig-maven-plugin</artifactId>
    <version><!-- check the latest on http://central.maven.org/maven2/org/ec4j/maven/editorconfig-maven-plugin/ --></version>
    <executions>
      <execution>
        <id>check</id>
        <phase>verify</phase>
        <goals>
          <goal>check</goal>
        </goals>
      </execution>
    </executions>
    <configuration>
      <!-- See http://ec4j.github.io/editorconfig-maven-plugin/ for full configuration reference -->
      <excludes>
        <!-- Note that maven submodule directories and many non-source file patterns are excluded by default -->
        <!-- - see https://github.com/ec4j/editorconfig-linters/blob/master/editorconfig-lint-api/src/main/java/org/ec4j/lint/api/Constants.java#L37
        <!-- You can exclude further files from processing: -->
        <exclude>src/main/**/*.whatever</exclude>
      </excludes>
      <!-- All files are included by default:
      <includes>
        <include>**</include>
      </includes>
      -->
    </configuration>
  </plugin>

In case any violations are detected, you may want to fix them automagically by running

mvn editorconfig:format

Configuration

How it works

editorconfig-maven-plugin is designed around the Linter interface. Linter is a processor specialized for some particular file format (such as YAML or XML) for which it can detect whether some particular .editorconfig properties are satisfied and eventually propose a fix that can be applied automatically.

editorconfig-maven-plugin Table 1. Linters available in
Class name Default includes Default excludes Supported .editorconfig properties

TextLinter

**/*

end_of_line, trim_trailing_whitespace, insert_final_newline

XmlLinter

**/*.xml, **/*.xsl

indent_style, indent_size

Contributions of further Linters are highly welcome! Please open an issue when you start working on something to avoid duplicate work.

How to build

Prerequisites:

  • Java 7+

  • Optionally Maven 3.5.0+, unless you want to use ./mvnw or mvnw.bat delivered by the project

The most common build with unit tests:

./mvnw clean install

On Windows:

.\mvnw.cmd clean install

Misc.

org.ec4j.maven
EditorConfig tools for Java

Versions

Version
0.1.1
0.1.0
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2