Metrics are now also available via JMX directly
[demos/kafka/monitoring] / mbeans / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <project xmlns="http://maven.apache.org/POM/4.0.0" 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   <modelVersion>4.0.0</modelVersion>
6
7   <groupId>de.juplo.monitoring</groupId>
8   <artifactId>mbeans</artifactId>
9   <version>1.0-SNAPSHOT</version>
10   <name>ListMBeans</name>
11
12   <properties>
13     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14     <maven.compiler.source>1.7</maven.compiler.source>
15     <maven.compiler.target>1.7</maven.compiler.target>
16   </properties>
17
18   <build>
19     <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
20       <plugins>
21         <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
22         <plugin>
23           <artifactId>maven-clean-plugin</artifactId>
24           <version>3.1.0</version>
25         </plugin>
26         <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
27         <plugin>
28           <artifactId>maven-resources-plugin</artifactId>
29           <version>3.0.2</version>
30         </plugin>
31         <plugin>
32           <artifactId>maven-compiler-plugin</artifactId>
33           <version>3.8.0</version>
34         </plugin>
35         <plugin>
36           <artifactId>maven-surefire-plugin</artifactId>
37           <version>2.22.1</version>
38         </plugin>
39         <plugin>
40           <artifactId>maven-jar-plugin</artifactId>
41           <version>3.0.2</version>
42         </plugin>
43         <plugin>
44           <artifactId>maven-install-plugin</artifactId>
45           <version>2.5.2</version>
46         </plugin>
47         <plugin>
48           <artifactId>maven-deploy-plugin</artifactId>
49           <version>2.8.2</version>
50         </plugin>
51         <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
52         <plugin>
53           <artifactId>maven-site-plugin</artifactId>
54           <version>3.7.1</version>
55         </plugin>
56         <plugin>
57           <artifactId>maven-project-info-reports-plugin</artifactId>
58           <version>3.0.0</version>
59         </plugin>
60       </plugins>
61     </pluginManagement>
62   </build>
63 </project>