diff options
author | Julien Eluard <[email protected]> | 2010-11-14 22:11:49 +0100 |
---|---|---|
committer | Julien Eluard <[email protected]> | 2010-11-14 22:11:49 +0100 |
commit | a06cd8f04ce4fed80d9fa1197c222bafb4624e41 (patch) | |
tree | 851bb643bd5d7639d005a0bf96633b7175e8c43f /pom.xml |
first commit
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 129 |
1 files changed, 129 insertions, 0 deletions
@@ -0,0 +1,129 @@ +<?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>org.semantic-versioning</groupId> + <artifactId>parent</artifactId> + <version>0.9-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>semantic-versioning</name> + <inceptionYear>2010</inceptionYear> + <url>http://github.com/jeluard/semantic-versioning</url> + + <description> + A library to automatically validate if your project's version number follows Semantic Versioning principles + </description> + + <licenses> + <license> + <name>Apache 2</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <scm> + <connection>scm:git:[email protected]:jeluard/semantic-versioning</connection> + <developerConnection>scm:git:[email protected]:jeluard/semantic-versioning</developerConnection> + <url>scm:git:[email protected]:jeluard/semantic-versioning</url> + </scm> + + <issueManagement> + <system>Github</system> + <url>http://github.com/jeluard/semantic-versioning/issues</url> + </issueManagement> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <modules> + <module>api</module> + <module>enforcer-rule</module> + </modules> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.0-beta-9</version> + </plugin> + <plugin> + <groupId>com.mycila.maven-license-plugin</groupId> + <artifactId>maven-license-plugin</artifactId> + <version>1.8.0</version> + <configuration> + <header>LICENSE</header> + <failIfMissing>true</failIfMissing> + <aggregate>true</aggregate> + <excludes> + <exclude>README.textile</exclude> + </excludes> + </configuration> + <executions> + <execution> + <id>check-headers</id> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadocs</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-site-plugin</artifactId> + <version>2.1.1</version> + </plugin> + </plugins> + </build> + + <reporting> + <plugins> + <plugin> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.2</version> + <reportSets> + <reportSet> + <reports> + <report>dependencies</report> + <report>cim</report> + <report>issue-tracking</report> + <report>license</report> + <report>scm</report> + </reports> + </reportSet> + </reportSets> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + + </plugins> + </reporting> + +</project> + |