mvn clean install
mvn org.igov:log-plugin:replace-long-calls
Original request: https://github.com/e-government-ua/i/issues/1067
To include replacing logs you can execute the ilog by setting the plugin in the <build>
section of your POM as shown below:
<project>
...
<plugins>
<plugin>
<plugin>
<groupId>org.igov</groupId>
<artifactId>log-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>replace-long-calls</goal>
</goals>
</execution>
</executions>
</plugin>
</plugin>
</plugins>
...
</project>