Skip to content

Commit 2009e7d

Browse files
authored
Add Bill of Materials (#561)
* Add Bill of Materials Fixes #508. Signed-off-by: Tom Wieczorek <[email protected]>
1 parent a526bae commit 2009e7d

File tree

2 files changed

+127
-0
lines changed

2 files changed

+127
-0
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
<module>simpleclient_jetty</module>
6363
<module>simpleclient_jetty_jdk8</module>
6464
<module>simpleclient_vertx</module>
65+
<module>simpleclient_bom</module>
6566
<module>benchmark</module>
6667
</modules>
6768

simpleclient_bom/pom.xml

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>io.prometheus</groupId>
7+
<artifactId>parent</artifactId>
8+
<version>0.9.1-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>simpleclient_bom</artifactId>
12+
<packaging>pom</packaging>
13+
14+
<name>Prometheus Java Simpleclient BOM</name>
15+
<description>
16+
Bill of Materials for the Simpleclient.
17+
</description>
18+
19+
<licenses>
20+
<license>
21+
<name>The Apache Software License, Version 2.0</name>
22+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23+
<distribution>repo</distribution>
24+
</license>
25+
</licenses>
26+
27+
<dependencyManagement>
28+
<dependencies>
29+
<dependency>
30+
<groupId>io.prometheus</groupId>
31+
<artifactId>simpleclient</artifactId>
32+
<version>0.9.1-SNAPSHOT</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>io.prometheus</groupId>
36+
<artifactId>simpleclient_common</artifactId>
37+
<version>0.9.1-SNAPSHOT</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>io.prometheus</groupId>
41+
<artifactId>simpleclient_caffeine</artifactId>
42+
<version>0.9.1-SNAPSHOT</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>io.prometheus</groupId>
46+
<artifactId>simpleclient_dropwizard</artifactId>
47+
<version>0.9.1-SNAPSHOT</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>io.prometheus</groupId>
51+
<artifactId>simpleclient_graphite_bridge</artifactId>
52+
<version>0.9.1-SNAPSHOT</version>
53+
</dependency>
54+
<dependency>
55+
<groupId>io.prometheus</groupId>
56+
<artifactId>simpleclient_hibernate</artifactId>
57+
<version>0.9.1-SNAPSHOT</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>io.prometheus</groupId>
61+
<artifactId>simpleclient_guava</artifactId>
62+
<version>0.9.1-SNAPSHOT</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>io.prometheus</groupId>
66+
<artifactId>simpleclient_hotspot</artifactId>
67+
<version>0.9.1-SNAPSHOT</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>io.prometheus</groupId>
71+
<artifactId>simpleclient_httpserver</artifactId>
72+
<version>0.9.1-SNAPSHOT</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>io.prometheus</groupId>
76+
<artifactId>simpleclient_log4j</artifactId>
77+
<version>0.9.1-SNAPSHOT</version>
78+
</dependency>
79+
<dependency>
80+
<groupId>io.prometheus</groupId>
81+
<artifactId>simpleclient_log4j2</artifactId>
82+
<version>0.9.1-SNAPSHOT</version>
83+
</dependency>
84+
<dependency>
85+
<groupId>io.prometheus</groupId>
86+
<artifactId>simpleclient_logback</artifactId>
87+
<version>0.9.1-SNAPSHOT</version>
88+
</dependency>
89+
<dependency>
90+
<groupId>io.prometheus</groupId>
91+
<artifactId>simpleclient_pushgateway</artifactId>
92+
<version>0.9.1-SNAPSHOT</version>
93+
</dependency>
94+
<dependency>
95+
<groupId>io.prometheus</groupId>
96+
<artifactId>simpleclient_servlet</artifactId>
97+
<version>0.9.1-SNAPSHOT</version>
98+
</dependency>
99+
<dependency>
100+
<groupId>io.prometheus</groupId>
101+
<artifactId>simpleclient_spring_web</artifactId>
102+
<version>0.9.1-SNAPSHOT</version>
103+
</dependency>
104+
<dependency>
105+
<groupId>io.prometheus</groupId>
106+
<artifactId>simpleclient_spring_boot</artifactId>
107+
<version>0.9.1-SNAPSHOT</version>
108+
</dependency>
109+
<dependency>
110+
<groupId>io.prometheus</groupId>
111+
<artifactId>simpleclient_jetty</artifactId>
112+
<version>0.9.1-SNAPSHOT</version>
113+
</dependency>
114+
<dependency>
115+
<groupId>io.prometheus</groupId>
116+
<artifactId>simpleclient_jetty_jdk8</artifactId>
117+
<version>0.9.1-SNAPSHOT</version>
118+
</dependency>
119+
<dependency>
120+
<groupId>io.prometheus</groupId>
121+
<artifactId>simpleclient_vertx</artifactId>
122+
<version>0.9.1-SNAPSHOT</version>
123+
</dependency>
124+
</dependencies>
125+
</dependencyManagement>
126+
</project>

0 commit comments

Comments
 (0)