2016-08-02 19:51:59 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<groupId>net.kemitix</groupId>
|
2017-01-03 20:08:58 +00:00
|
|
|
<artifactId>kemitix-checkstyle-ruleset-parent</artifactId>
|
2017-01-14 18:01:37 +00:00
|
|
|
<version>2.0.1</version>
|
2017-01-03 20:08:58 +00:00
|
|
|
<packaging>pom</packaging>
|
2016-08-02 19:51:59 +01:00
|
|
|
|
2017-01-03 20:08:58 +00:00
|
|
|
<name>Kemitix Checkstyle Ruleset (Parent)</name>
|
|
|
|
<description>Parent POM for the Kemitix Checkstyle Ruleset and it's Builder</description>
|
|
|
|
|
2017-01-13 19:32:36 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2017-01-03 20:08:58 +00:00
|
|
|
<modules>
|
|
|
|
<module>builder</module>
|
|
|
|
<module>ruleset</module>
|
2017-01-13 19:36:07 +00:00
|
|
|
<module>plugin</module>
|
2017-01-13 19:36:21 +00:00
|
|
|
<module>plugin-sample</module>
|
2017-01-03 20:08:58 +00:00
|
|
|
</modules>
|
2016-08-02 19:51:59 +01:00
|
|
|
|
2016-08-16 18:52:31 +01:00
|
|
|
<issueManagement>
|
|
|
|
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset/issues</url>
|
|
|
|
<system>GitHub Issues</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:kemitix/kemitix-checkstyle-ruleset.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:kemitix/kemitix-checkstyle-ruleset.git</developerConnection>
|
|
|
|
<url>git@github.com:kemitix/kemitix-checkstyle-ruleset.git</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<url>https://github.com/kemitix/kemitix-checkstyle-ruleset</url>
|
|
|
|
|
2016-08-02 19:51:59 +01:00
|
|
|
<inceptionYear>2016</inceptionYear>
|
|
|
|
|
|
|
|
<prerequisites>
|
|
|
|
<maven>3.0.4</maven>
|
|
|
|
</prerequisites>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT License (MIT)</name>
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Paul Campbell</name>
|
|
|
|
<email>pcampbell@kemitix.net</email>
|
|
|
|
<organization>Kemitix</organization>
|
|
|
|
<organizationUrl>https://github.com/kemitix/</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2016-09-11 14:59:32 +01:00
|
|
|
</project>
|