hsk-maven-plugin

Quality Code pre configuration on maven plugin

View the Project on GitHub hiskasoft/hsk-maven-plugin

HSK Maven Plugin

You can control of java code from one plugin that embebed other plugin with pre configurations.

The hiska-maven-plugin encapsule the plugin: 1 mojo-executor Executor of other plugin in one plugin

  1. formatter-maven-plugin Formater source code for JS/JAVA/HTML/XML
  2. license-maven-plugin Add Header Licence for copyrigth
  3. maven-pmd-plugin Check of quality code

Configuration

Include the hiska-maven-plugin in your project and compile your project

pom.xml

<project>
 ...
 <build>
 ...
  <plugins>
  ...
   <plugin>
    <groupId>com.hiskasoft.maven</groupId>
    <artifactId>hiska-maven-plugin</artifactId>
    <version>${last-version}</version>
    <executions>
     <execution>
      <phase>process-resources</phase>
      <goals>
       <goal>process</goal>       
      </goals>
     </execution>
    </executions>
   </plugin>
   ...
  </plugins>
  ...
 </build>
 ...
</project>

Contact