imixs-workflow icon indicating copy to clipboard operation
imixs-workflow copied to clipboard

Code Formating via Maven

Open rsoika opened this issue 3 years ago • 0 comments

Introduce code formater maven plugin:

		<!-- code style -->
		<plugin>
			<groupId>net.revelc.code.formatter</groupId>
			<artifactId>formatter-maven-plugin</artifactId>
			<configuration>
				<configFile>${project.parent.basedir}/imixs-code-style.xml</configFile>
			</configuration>
			<executions>
				<execution>
					<phase>clean</phase>
					<goals>
						<goal>format</goal>
					</goals>
				</execution>
			</executions>
		</plugin>

Pre requirement is java version 11

rsoika avatar Jul 25 '22 11:07 rsoika