Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Google Java Style Guide and Sun Code Conventions, but is highly configurable. It can be invoked with an ANT task and a command line program.
pbludov on issue-4219-shadowed-imports
pbludov on issue-9149-stack-overflow2
Issue #9149: removed input caus… (compare)
pbludov on issue-9149-stack-overflow2
minor: fix sonar violation 'Ref… doc: releasenotes 8.39 [maven-release-plugin] prepare … and 4 more (compare)
pbludov on issue-9149-stack-overflow2
pbludov on issue-9149-stack-overflow2
Issue #9149: workaround for sta… (compare)
pbludov on issue-9149-stack-overflow2
Issue #9149: workaround for sta… (compare)
pbludov on issue-9149-stack-overflow2
minor: fix sonar violation 'Ref… doc: releasenotes 8.39 [maven-release-plugin] prepare … and 4 more (compare)
pbludov on master
Issue #5951: Incorrect warning … minor: update wercker.sh to use… dependency: bump org.eclipse.jg… and 18 more (compare)
pbludov on issue-8864-cmd-set
pbludov on issue-9021-fix-josm
pbludov on issue-9021-fix-josm
Issue #9021: fix josm validation (compare)
pbludov on issue-9021-fix-josm
pbludov on issue-8951-remove-buddy
pbludov on issue-6722-missing-asterisk
pbludov on issue-9124-stack-overflow-parenpad
pbludov on issue-8018-operator-wrap
pbludov on issue-9101-fix-stack-overflow
pbludov on issue-4219-shadowed-imports
Issue #4219: UnusedImports does… (compare)
github-actions[bot] on issue-4219-shadowed-imports
Issue #8651: Checkstyle fails o… Issue #4219: UnusedImports does… (compare)
pbludov on issue-8018-operator-wrap
Issue #8018: AST based operator… (compare)
I am new to open source community , i would love to start my journey from this community .
I am also willing to take part in GSoC 2019 as well .
I know JAVA ,C ,C++ , MySQL and right now learning python as well .
How can i contribute to this community ?? Please Guide me!!!!!
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle-maven-plugin.version}</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceDirectories>
<sourceDirectory>activiti-api-impl</sourceDirectory>
</sourceDirectories>
<configLocation>./checkstyle.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<linkXRef>false</linkXRef>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle-maven-plugin.version}</version>
<configuration>
<configLocation>./checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</reporting>