-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
104 lines (91 loc) · 3.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<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>org.overlord</groupId>
<artifactId>governance-website</artifactId>
<version>1.0.0.Final</version>
<packaging>pom</packaging>
<name>Overlord Project Web Site</name>
<description>This is the (currently github gh-pages based) website for the JBoss Overlord umbrella project.</description>
<url>http://www.jboss.org/overlord</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/Overlord</url>
</issueManagement>
<scm>
<connection>scm:git:[email protected]:Governance/overlord.git</connection>
<developerConnection>scm:git:[email protected]:Governance/overlord.git</developerConnection>
<url>scm:git:[email protected]:Governance/overlord.git</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Gary Brown</name>
<id>gbrown</id>
<email>[email protected]</email>
<organization>JBoss, a division of Red Hat</organization>
<roles>
<role>Project Lead</role>
<role>Developer</role>
</roles>
</developer>
<developer>
<name>Kurt Stam</name>
<id>kstam</id>
<email>[email protected]</email>
<organization>JBoss, a division of Red Hat</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<name>Eric Wittmann</name>
<id>ewittman</id>
<email>[email protected]</email>
<organization>Red Hat</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<name>Brett Meyer</name>
<id>brmeyer</id>
<email>[email protected]</email>
<organization>Red Hat</organization>
<roles>
<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>
<!-- Distribution URLs -->
<jboss.releases.repo.url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</jboss.releases.repo.url>
<jboss.snapshots.repo.url>https://repository.jboss.org/nexus/content/repositories/snapshots/</jboss.snapshots.repo.url>
</properties>
<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>${jboss.releases.repo.url}</url>
</repository>
<snapshotRepository>
<id>jboss-snapshots-repository</id>
<name>JBoss Snapshots Repository</name>
<url>${jboss.snapshots.repo.url}</url>
</snapshotRepository>
</distributionManagement>
</project>