Skip to content

Commit 00a8f1b

Browse files
committed
Add repository details to POM
* update description * add scm, developers, distributionManagement, issueManagement sections
1 parent 11d280c commit 00a8f1b

File tree

1 file changed

+49
-5
lines changed

1 file changed

+49
-5
lines changed

pom.xml

Lines changed: 49 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,65 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
88
<version>3.2.3</version>
9-
<relativePath/> <!-- lookup parent from repository -->
9+
<relativePath/>
10+
<!-- lookup parent from repository -->
1011
</parent>
12+
1113
<groupId>io.pivotal.app.actuator</groupId>
1214
<artifactId>spring-boot-starter-runtime-metadata</artifactId>
13-
<version>0.1.0</version>
15+
<version>0.1.1</version>
16+
1417
<name>spring-boot-starter-runtime-metadata</name>
15-
<description>Custom actuator endpoint and cf-butler Java application detail data publisher command-line runner that shares the dependencies the application requires at runtime</description>
18+
<description>Adds custom actuator endpoints that share details on the dependencies the application requires at runtime</description>
19+
20+
<scm>
21+
<connection>scm:git:git://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata.git</connection>
22+
<developerConnection>scm:git:ssh://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata.git</developerConnection>
23+
<url>https://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata</url>
24+
</scm>
25+
26+
<developers>
27+
<developer>
28+
<id>cphillipson</id>
29+
<name>Chris Phillipson</name>
30+
<email>[email protected]</email>
31+
<url>https://pivotal.io</url>
32+
<roles>
33+
<role>architect</role>
34+
<role>developer</role>
35+
</roles>
36+
<timezone>America/Seattle</timezone>
37+
</developer>
38+
</developers>
39+
40+
<distributionManagement>
41+
<!-- publish to GitHub gh-pages -->
42+
<site>
43+
<id>github</id>
44+
<name>Deployment through Maven's SCM Publish Plugin</name>
45+
<url>scm:git:[email protected]:cf-toolsuite/spring-boot-starter-runtime-metadata.git</url>
46+
</site>
47+
<repository>
48+
<id>github</id>
49+
<name>GitHub Packages</name>
50+
<url>https://maven.pkg.github.com/cf-toolsuite/spring-boot-starter-runtime-metadata</url>
51+
</repository>
52+
</distributionManagement>
53+
54+
<issueManagement>
55+
<url>https://github.com/cf-toolsuite/spring-boot-starter-runtime-metadata/issues</url>
56+
<system>GitHub Issues</system>
57+
</issueManagement>
58+
1659
<properties>
1760
<java.version>17</java.version>
1861
</properties>
62+
1963
<dependencies>
2064
<dependency>
2165
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)