You can download maven-checkstyle-plugin-2.9.1.jar in this page.
Apache License
maven-checkstyle-plugin-2.9.1.jar file has the following types.
LICENSE.txt META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.maven.plugins/maven-checkstyle-plugin/pom.properties META-INF/maven/org.apache.maven.plugins/maven-checkstyle-plugin/pom.xml META-INF/maven/plugin.xml META-INF/plexus/components.xml checkstyle-report.properties checkstyle-report_de.properties checkstyle-report_en.properties checkstyle-report_fr.properties checkstyle-report_pt_BR.properties checkstyle-report_sv.properties config/avalon_checks.xml config/maven-header.txt config/maven_checks.xml config/sun_checks.xml config/turbine_checks.xml log4j.properties org.apache.maven.plugin.checkstyle.AbstractCheckstyleReport.class org.apache.maven.plugin.checkstyle.CheckstyleAggregateReport.class org.apache.maven.plugin.checkstyle.CheckstyleExecutor.class org.apache.maven.plugin.checkstyle.CheckstyleExecutorException.class org.apache.maven.plugin.checkstyle.CheckstyleExecutorRequest.class org.apache.maven.plugin.checkstyle.CheckstyleReport.class org.apache.maven.plugin.checkstyle.CheckstyleReportGenerator.class org.apache.maven.plugin.checkstyle.CheckstyleReportListener.class org.apache.maven.plugin.checkstyle.CheckstyleResults.class org.apache.maven.plugin.checkstyle.CheckstyleViolationCheckMojo.class org.apache.maven.plugin.checkstyle.DefaultCheckstyleExecutor.class org.apache.maven.plugin.checkstyle.HelpMojo.class org.apache.maven.plugin.checkstyle.ReportResource.class org.apache.maven.plugin.checkstyle.VelocityTemplate.class org.apache.maven.plugin.checkstyle.rss.CheckstyleRssGenerator.class org.apache.maven.plugin.checkstyle.rss.CheckstyleRssGeneratorRequest.class org.apache.maven.plugin.checkstyle.rss.DefaultCheckstyleRssGenerator.class org.codehaus.plexus.util.interpolation.RegexBasedInterpolator.class org.codehaus.plexus.util.interpolation.ValueSource.class org/apache/maven/plugin/checkstyle/checkstyle-rss.vm org/apache/maven/plugin/checkstyle/images/rss.png
maven-checkstyle-plugin-2.9.1.pom file content.
<?xml version='1.0' encoding='UTF-8'?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <artifactId>maven-plugins</artifactId> <groupId>org.apache.maven.plugins</groupId> <version>22</version> <relativePath>../maven-plugins/pom.xml</relativePath> </parent> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.9.1</version> <packaging>maven-plugin</packaging> <name>Maven Checkstyle Plugin</name> <description>Generates a report on violations of code style and optionally fails the build if violations are detected.</description> <inceptionYear>2005</inceptionYear> <contributors> <contributor> <name>Joakim Erdfelt</name> <email>joakim@erdfelt.com</email> </contributor> </contributors> <prerequisites> <maven>${mavenVersion}</maven> </prerequisites> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.9.1</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.9.1</developerConnection> <url>http://svn.apache.org/viewvc/maven/plugins/tags/maven-checkstyle-plugin-2.9.1</url> </scm> <issueManagement> <system>JIRA</system> <url>http://jira.codehaus.org/browse/MCHECKSTYLE</url> </issueManagement> <properties> <mavenVersion>2.2.1</mavenVersion> <checkstyleVersion>5.5</checkstyleVersion> <doxiaVersion>1.1.3</doxiaVersion> <sitePluginVersion>3.0</sitePluginVersion> </properties> <dependencies> <!-- maven --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>${mavenVersion}</version> </dependency> <!-- shared --> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-impl</artifactId> <version>2.2</version> </dependency> <!-- doxia --> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-sink-api</artifactId> <version>${doxiaVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-decoration-model</artifactId> <version>${doxiaVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-site-renderer</artifactId> <version>${doxiaVersion}</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-api</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency> <!-- shared --> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-doxia-tools</artifactId> <version>1.2.1</version> </dependency> <!-- plexus --> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>1.0-alpha-9</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-resources</artifactId> <version>1.0-alpha-7</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>2.0.5</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-interpolation</artifactId> <version>1.13</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-velocity</artifactId> <version>1.1.8</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-api</artifactId> </exclusion> <exclusion> <groupId>velocity</groupId> <artifactId>velocity</artifactId> </exclusion> </exclusions> </dependency> <!-- checkstyle --> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyleVersion}</version> <exclusions> <!-- MCHECKSTYLE-156 --> <exclusion> <groupId>com.sun</groupId> <artifactId>tools</artifactId> </exclusion> </exclusions> </dependency> <!-- misc --> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.5</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>1.2</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${sitePluginVersion}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-metadata</artifactId> <executions> <execution> <goals> <goal>generate-metadata</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>run-its</id> <build> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>1.5</version> <configuration> <goals> <goal>clean</goal> <goal>site</goal> </goals> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>reporting</id> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <!-- Use the current version to generate sample with the last features/fixes of the plugin. It implies that the current version is already deployed to generate the site. --> <version>${project.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <configuration> <requirements> <jdk>1.5</jdk> </requirements> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>l10n-maven-plugin</artifactId> <version>1.0-alpha-2</version> <configuration> <excludes> <exclude>**/log4j.properties</exclude> </excludes> <locales> <locale>de</locale> <locale>fr</locale> <locale>pt_BR</locale> <locale>sv</locale> </locales> </configuration> </plugin> </plugins> </reporting> </profile> </profiles> </project>
<dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.9.1</version> </dependency>
If you think the following maven-checkstyle-plugin-2.9.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download maven-checkstyle-plugin-2.9.1.jar file