Bump versions by x.(y+1).z
[serviceutils.git] / metrics / impl-prometheus / pom.xml
index 9d71cf4407b841eae5931f7918ee478e2cc80137..a61604d99a90c59cb6f549b0dbb903de5a4806ca 100644 (file)
@@ -6,47 +6,54 @@
  terms of the Eclipse Public License v1.0 which accompanies this distribution,
  and is available at http://www.eclipse.org/legal/epl-v10.html
 -->
-<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">
+<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">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.opendaylight.infrautils</groupId>
-    <artifactId>parent</artifactId>
-    <version>1.5.0-SNAPSHOT</version>
-    <relativePath>../../common/parent</relativePath>
+    <groupId>org.opendaylight.serviceutils</groupId>
+    <artifactId>quality-parent</artifactId>
+    <version>0.11.0-SNAPSHOT</version>
+    <relativePath>../../commons/quality-parent</relativePath>
   </parent>
 
   <artifactId>metrics-impl-prometheus</artifactId>
   <packaging>bundle</packaging>
   <!-- <name> formatting is used by autorelease to parse and notify projects on
        build failure. Please do not modify this unless you have a good reason. -->
-  <name>ODL :: infrautils :: ${project.artifactId}</name>
+  <name>ODL :: serviceutils :: ${project.artifactId}</name>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>io.prometheus</groupId>
+        <artifactId>simpleclient_bom</artifactId>
+        <version>0.10.0</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
 
   <dependencies>
     <dependency>
-      <groupId>org.opendaylight.infrautils</groupId>
+      <groupId>org.opendaylight.serviceutils</groupId>
       <artifactId>metrics-api</artifactId>
-      <version>${project.version}</version>
     </dependency>
 
     <dependency>
       <groupId>io.prometheus</groupId>
       <artifactId>simpleclient</artifactId>
-      <version>0.4.0</version>
     </dependency>
     <dependency>
       <groupId>io.prometheus</groupId>
       <artifactId>simpleclient_hotspot</artifactId>
-      <version>0.4.0</version>
     </dependency>
-<!-- TODO integrate with caches/impl/guava/ (or, better, straight go for Caffeine Cache)
+    <!-- TODO integrate with Guave/Caffeine Cache)
     <dependency>
       <groupId>io.prometheus</groupId>
       <artifactId>simpleclient_guava</artifactId>
-      <version>0.4.0</version>
     </dependency>
--->
+    -->
 
     <dependency>
       <groupId>javax.servlet</groupId>
     <dependency>
       <groupId>io.prometheus</groupId>
       <artifactId>simpleclient_servlet</artifactId>
-      <version>0.4.0</version>
     </dependency>
     <dependency>
-      <!-- TODO remove this when we can use the WebServer/WebContext API,
-           instead of directly the raw OSGi HttpService, in OsgiWebInitializer: -->
       <groupId>org.osgi</groupId>
-      <artifactId>org.osgi.compendium</artifactId>
+      <artifactId>org.osgi.service.component.annotations</artifactId>
     </dependency>
-
     <dependency>
-      <groupId>org.opendaylight.infrautils</groupId>
-      <artifactId>infrautils-util</artifactId>
-      <version>${project.version}</version>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.service.http.whiteboard</artifactId>
     </dependency>
+
     <dependency>
-      <groupId>javax.inject</groupId>
+      <groupId>com.guicedee.services</groupId>
       <artifactId>javax.inject</artifactId>
+      <optional>true</optional>
     </dependency>
     <dependency>
-      <groupId>org.ops4j.pax.cdi</groupId>
-      <artifactId>pax-cdi-api</artifactId>
+      <groupId>jakarta.annotation</groupId>
+      <artifactId>jakarta.annotation-api</artifactId>
+      <scope>provided</scope>
       <optional>true</optional>
     </dependency>
 
     <dependency>
       <groupId>org.opendaylight.infrautils</groupId>
       <artifactId>infrautils-testutils</artifactId>
-      <version>${project.version}</version>
-      <scope>test</scope>
     </dependency>
   </dependencies>
-
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.aries.blueprint</groupId>
-        <artifactId>blueprint-maven-plugin</artifactId>
-      </plugin>
-    </plugins>
-  </build>
 </project>