1<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/maven-v4_0_0.xsd"> 2 <modelVersion>4.0.0</modelVersion> 3 <parent> 4 <groupId>com.google.code.gson</groupId> 5 <artifactId>gson-parent</artifactId> 6 <version>2.10.1</version> 7 </parent> 8 9 <artifactId>gson-metrics</artifactId> 10 <inceptionYear>2011</inceptionYear> 11 <name>Gson Metrics</name> 12 <description>Performance Metrics for Google Gson library</description> 13 14 <licenses> 15 <license> 16 <name>Apache-2.0</name> 17 <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> 18 </license> 19 </licenses> 20 21 <organization> 22 <name>Google, Inc.</name> 23 <url>https://www.google.com</url> 24 </organization> 25 26 <dependencies> 27 <dependency> 28 <groupId>com.google.code.gson</groupId> 29 <artifactId>gson</artifactId> 30 <version>${project.parent.version}</version> 31 </dependency> 32 <dependency> 33 <groupId>com.fasterxml.jackson.core</groupId> 34 <artifactId>jackson-databind</artifactId> 35 <version>2.14.1</version> 36 </dependency> 37 <dependency> 38 <groupId>com.google.caliper</groupId> 39 <artifactId>caliper</artifactId> 40 <version>1.0-beta-3</version> 41 </dependency> 42 </dependencies> 43 44 <build> 45 <pluginManagement> 46 <plugins> 47 <plugin> 48 <groupId>com.github.siom79.japicmp</groupId> 49 <artifactId>japicmp-maven-plugin</artifactId> 50 <version>0.17.1</version> 51 <configuration> 52 <!-- This module is not supposed to be consumed as library, so no need to check API --> 53 <skip>true</skip> 54 </configuration> 55 </plugin> 56 <plugin> 57 <groupId>org.apache.maven.plugins</groupId> 58 <artifactId>maven-deploy-plugin</artifactId> 59 <configuration> 60 <!-- Not deployed --> 61 <skip>true</skip> 62 </configuration> 63 </plugin> 64 </plugins> 65 </pluginManagement> 66 </build> 67 68 <developers> 69 <developer> 70 <name>Inderjeet Singh</name> 71 <organization>Google Inc.</organization> 72 </developer> 73 <developer> 74 <name>Joel Leitch</name> 75 <organization>Google Inc.</organization> 76 </developer> 77 <developer> 78 <name>Jesse Wilson</name> 79 <organization>Google Inc.</organization> 80 </developer> 81 </developers> 82</project> 83