2011-04-12 23:53:40 +02:00
|
|
|
<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">
|
2008-09-01 05:13:32 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
2011-01-10 23:47:36 +01:00
|
|
|
<parent>
|
2016-02-11 18:47:25 +01:00
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson-parent</artifactId>
|
2016-02-12 04:52:59 +01:00
|
|
|
<version>2.6.1</version>
|
2011-01-10 23:47:36 +01:00
|
|
|
</parent>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<name>Gson</name>
|
|
|
|
|
2008-09-01 05:13:32 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
2008-09-01 05:13:32 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-02-11 18:47:25 +01:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2008-09-01 05:13:32 +02:00
|
|
|
<configuration>
|
2016-02-11 18:47:25 +01:00
|
|
|
<includePackageNames>com.google.gson</includePackageNames>
|
|
|
|
<excludePackageNames>com.google.gson.internal:com.google.gson.internal.bind</excludePackageNames>
|
|
|
|
<links>
|
|
|
|
<link>http://docs.oracle.com/javase/6/docs/api/</link>
|
|
|
|
</links>
|
2008-09-01 05:13:32 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|