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-extras</artifactId> 10 <inceptionYear>2008</inceptionYear> 11 <name>Gson Extras</name> 12 <description>Google Gson grab bag of utilities, type adapters, etc.</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>javax.annotation</groupId> 34 <artifactId>jsr250-api</artifactId> 35 <version>1.0</version> 36 </dependency> 37 <dependency> 38 <groupId>junit</groupId> 39 <artifactId>junit</artifactId> 40 <scope>test</scope> 41 </dependency> 42 </dependencies> 43 44 <build> 45 <pluginManagement> 46 <plugins> 47 <plugin> 48 <groupId>org.apache.maven.plugins</groupId> 49 <artifactId>maven-deploy-plugin</artifactId> 50 <configuration> 51 <!-- Currently not deployed --> 52 <skip>true</skip> 53 </configuration> 54 </plugin> 55 </plugins> 56 </pluginManagement> 57 </build> 58 59 <developers> 60 <developer> 61 <name>Inderjeet Singh</name> 62 </developer> 63 <developer> 64 <name>Joel Leitch</name> 65 <organization>Google Inc.</organization> 66 </developer> 67 <developer> 68 <name>Jesse Wilson</name> 69 <organization>Square Inc.</organization> 70 </developer> 71 </developers> 72</project> 73