blob: e01467e03e0cda30aa425ca7662371e745bce191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?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.semver</groupId>
<artifactId>parent</artifactId>
<version>0.9.27-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Semantic Versioning</name>
<inceptionYear>2010</inceptionYear>
<description>
A library to automatically validate if your project's version number follows Semantic Versioning principles
</description>
<parent>
<groupId>com.github.jeluard</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<modules>
<module>api</module>
<module>enforcer-rule</module>
</modules>
<scm>
<connection>scm:git:git@github.com:jeluard/semantic-versioning</connection>
<developerConnection>scm:git:git@github.com:jeluard/semantic-versioning</developerConnection>
<url>scm:git:git@github.com:jeluard/semantic-versioning</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>lefou</id>
<name>Tobias Roeser</name>
</developer>
</developers>
</project>
|