forked from apiman/apiman.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
59 lines (49 loc) · 1.86 KB
/
pom.xml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.apiman</groupId>
<artifactId>apiman-website</artifactId>
<version>1.1.4.Final</version>
<packaging>pom</packaging>
<name>apiman Project Web Site</name>
<description>This is the (currently github gh-pages based) website for the apiman project.</description>
<url>http://apiman.io/</url>
<inceptionYear>2014</inceptionYear>
<organization>
<name>JBoss, a division of Red Hat</name>
<url>http://www.jboss.org</url>
</organization>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>http://repository.jboss.org/licenses/apache-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>jira</system>
<url>https://issues.jboss.org/browse/APIMAN</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:apiman/apiman.github.io.git</connection>
<developerConnection>scm:git:[email protected]:apiman/apiman.github.io.git</developerConnection>
<url>scm:git:[email protected]:apiman/apiman.github.io.git</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Eric Wittmann</name>
<id>ewittman</id>
<email>[email protected]</email>
<organization>Red Hat</organization>
<roles>
<role>Tech Lead</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<properties>
<!-- Instruct the build to use only UTF-8 encoding for source code -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
</properties>
</project>