Skip to content

Commit 032d08c

Browse files
committed
bom should not include junit
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent 647f7cc commit 032d08c

File tree

4 files changed

+61
-49
lines changed

4 files changed

+61
-49
lines changed

pom.xml

Lines changed: 8 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@
55
<packaging>pom</packaging>
66
<modelVersion>4.0.0</modelVersion>
77

8-
<groupId>io.prometheus</groupId>
8+
<parent>
9+
<groupId>io.prometheus</groupId>
10+
<artifactId>client_java_parent</artifactId>
11+
<version>1.4.0-SNAPSHOT</version>
12+
<relativePath>prometheus-metrics-parent/pom.xml</relativePath>
13+
</parent>
14+
915
<artifactId>client_java</artifactId>
10-
<version>1.4.0-SNAPSHOT</version>
1116

1217
<name>Prometheus Metrics Library</name>
13-
<url>http://github.com/prometheus/client_java</url>
1418
<description>
1519
The Prometheus Java Metrics Library
1620
</description>
@@ -29,40 +33,8 @@
2933
<warnings>-Werror</warnings>
3034
</properties>
3135

32-
<licenses>
33-
<license>
34-
<name>The Apache Software License, Version 2.0</name>
35-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
36-
<distribution>repo</distribution>
37-
</license>
38-
</licenses>
39-
40-
<scm>
41-
<connection>scm:git:[email protected]:prometheus/client_java.git</connection>
42-
<developerConnection>scm:git:[email protected]:prometheus/client_java.git</developerConnection>
43-
<url>[email protected]:prometheus/client_java.git</url>
44-
<tag>HEAD</tag>
45-
</scm>
46-
47-
<developers>
48-
<developer>
49-
<id>fstab</id>
50-
<name>Fabian Stäber</name>
51-
<email>[email protected]</email>
52-
</developer>
53-
<developer>
54-
<id>zeitlinger</id>
55-
<name>Gregor Zeitlinger</name>
56-
<email>[email protected]</email>
57-
</developer>
58-
<developer>
59-
<id>dhoard</id>
60-
<name>Doug Hoard</name>
61-
<email>[email protected]</email>
62-
</developer>
63-
</developers>
64-
6536
<modules>
37+
<module>prometheus-metrics-parent</module>
6638
<module>prometheus-metrics-bom</module>
6739
<module>prometheus-metrics-core</module>
6840
<module>prometheus-metrics-config</module>

prometheus-metrics-bom/pom.xml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55

66
<parent>
77
<groupId>io.prometheus</groupId>
8-
<artifactId>client_java</artifactId>
8+
<artifactId>client_java_parent</artifactId>
99
<version>1.4.0-SNAPSHOT</version>
10+
<relativePath>../prometheus-metrics-parent/pom.xml</relativePath>
1011
</parent>
1112

1213
<artifactId>prometheus-metrics-bom</artifactId>
@@ -17,10 +18,6 @@
1718
Bill of Materials for the Prometheus Metrics library
1819
</description>
1920

20-
<properties>
21-
<prometheus.metrics.shaded.dependencies.version>1.3.1</prometheus.metrics.shaded.dependencies.version>
22-
</properties>
23-
2421
<dependencyManagement>
2522
<dependencies>
2623
<dependency>

prometheus-metrics-instrumentation-dropwizard/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,12 @@
2121
<automatic.module.name>io.prometheus.metrics.instrumentation.dropwizard</automatic.module.name>
2222
</properties>
2323

24-
<licenses>
25-
<license>
26-
<name>The Apache Software License, Version 2.0</name>
27-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28-
<distribution>repo</distribution>
29-
</license>
30-
</licenses>
3124
<developers>
3225
<developer>
3326
<id>kingster</id>
3427
<name>Kinshuk Bairagi</name>
3528
<email>[email protected]</email>
3629
</developer>
37-
3830
</developers>
3931

4032
<dependencies>

prometheus-metrics-parent/pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<packaging>pom</packaging>
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<groupId>io.prometheus</groupId>
9+
<artifactId>client_java_parent</artifactId>
10+
<version>1.4.0-SNAPSHOT</version>
11+
12+
<name>Prometheus Metrics Library Parent</name>
13+
<url>http://github.com/prometheus/client_java</url>
14+
<description>
15+
The Prometheus Java Metrics Library Parent
16+
</description>
17+
18+
<licenses>
19+
<license>
20+
<name>The Apache Software License, Version 2.0</name>
21+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
22+
<distribution>repo</distribution>
23+
</license>
24+
</licenses>
25+
26+
<scm>
27+
<connection>scm:git:[email protected]:prometheus/client_java.git</connection>
28+
<developerConnection>scm:git:[email protected]:prometheus/client_java.git</developerConnection>
29+
<url>[email protected]:prometheus/client_java.git</url>
30+
<tag>HEAD</tag>
31+
</scm>
32+
33+
<developers>
34+
<developer>
35+
<id>fstab</id>
36+
<name>Fabian Stäber</name>
37+
<email>[email protected]</email>
38+
</developer>
39+
<developer>
40+
<id>zeitlinger</id>
41+
<name>Gregor Zeitlinger</name>
42+
<email>[email protected]</email>
43+
</developer>
44+
<developer>
45+
<id>dhoard</id>
46+
<name>Doug Hoard</name>
47+
<email>[email protected]</email>
48+
</developer>
49+
</developers>
50+
51+
</project>

0 commit comments

Comments
 (0)