checkstyle/pom.xml

47 lines
1.4 KiB
XML
Executable File

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>checkstyle</groupId>
<artifactId>checkstyle</artifactId>
<version>5.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Checkstyle</name>
<url>http://checkstyle.sourceforge.net/</url>
<description>Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard</description>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
</license>
</licenses>
<scm>
<url>https://checkstyle.svn.sourceforge.net/svnroot/checkstyle/trunk/checkstyle</url>
</scm>
<dependencies>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.6</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>com.google.collections</groupId>
<artifactId>google-collections</artifactId>
<version>0.9</version>
</dependency>
</dependencies>
</project>