Add source code formatting as part of build process using spotless maven plugin (#1101)

Signed-off-by: Arne Seime <arne.seime@gmail.com>
This commit is contained in:
Arne Seime
2019-11-03 22:40:36 +01:00
committed by Kai Kreuzer
parent f45aebca50
commit 2bb19d587f
+73 -1
View File
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
@@ -74,6 +75,8 @@
<sat.version>0.8.0</sat.version>
<slf4j.version>1.7.21</slf4j.version>
<xtext.version>2.17.0</xtext.version>
<spotless.version>1.24.3</spotless.version>
<spotless.check.skip>true</spotless.check.skip> <!-- Spotless disabled for now -->
</properties>
<dependencyManagement>
@@ -582,6 +585,75 @@ Import-Package: \\
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless.version}</version>
<configuration>
<java>
<eclipse>
<file>openhab_codestyle.xml</file>
<version>4.11.0</version>
</eclipse>
<removeUnusedImports></removeUnusedImports>
<importOrder>
<file>openhab.importorder</file>
</importOrder>
<endWithNewline />
</java>
<formats>
<format>
<!-- *.xml -->
<includes>
<include>src/**/*.xml</include>
</includes>
<excludes>
<exclude>**/pom.xml</exclude>
</excludes>
<eclipseWtp>
<type>XML</type>
<files>
<file>openhab_wst_xml_files.prefs</file>
</files>
<version>4.12.0</version>
</eclipseWtp>
<trimTrailingWhitespace />
<endWithNewline />
</format>
<format>
<!-- pom.xml -->
<includes>
<include>pom.xml</include>
</includes>
<eclipseWtp>
<type>XML</type>
<files>
<file>openhab_wst_pom_file.prefs</file>
</files>
<version>4.12.0</version>
</eclipseWtp>
<trimTrailingWhitespace />
<endWithNewline />
</format>
</formats>
</configuration>
<dependencies>
<dependency>
<groupId>org.openhab.tools</groupId>
<artifactId>openhab-codestyle</artifactId>
<version>${sat.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>codestyle_check</id>
<goals>
<goal>check</goal>
</goals>
<phase>initialize</phase>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>