2016-02-11 18:47:25 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2015-10-04 02:25:20 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
2015-10-04 02:25:20 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
2016-02-11 18:47:25 +01:00
|
|
|
<version>7</version>
|
2015-10-04 02:25:20 +02:00
|
|
|
</parent>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson-parent</artifactId>
|
2019-10-04 20:54:10 +02:00
|
|
|
<version>2.8.7-SNAPSHOT</version>
|
2016-02-11 18:47:25 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Gson Parent</name>
|
|
|
|
<description>Gson JSON library</description>
|
2015-10-04 02:25:20 +02:00
|
|
|
<url>https://github.com/google/gson</url>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>gson</module>
|
|
|
|
</modules>
|
|
|
|
|
2015-10-04 02:25:20 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-02-12 04:42:41 +01:00
|
|
|
<java.version>1.6</java.version>
|
2015-10-04 02:25:20 +02:00
|
|
|
</properties>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
2015-10-04 02:25:20 +02:00
|
|
|
<scm>
|
2016-02-11 18:47:25 +01:00
|
|
|
<url>https://github.com/google/gson/</url>
|
2015-10-04 02:25:20 +02:00
|
|
|
<connection>scm:git:https://github.com/google/gson.git</connection>
|
2016-02-11 18:47:25 +01:00
|
|
|
<developerConnection>scm:git:git@github.com:google/gson.git</developerConnection>
|
2019-10-04 20:54:10 +02:00
|
|
|
<tag>HEAD</tag>
|
2015-10-04 02:25:20 +02:00
|
|
|
</scm>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
2015-10-04 02:25:20 +02:00
|
|
|
<issueManagement>
|
2016-02-11 18:47:25 +01:00
|
|
|
<system>GitHub Issues</system>
|
2015-10-04 02:25:20 +02:00
|
|
|
<url>https://github.com/google/gson/issues</url>
|
|
|
|
</issueManagement>
|
2016-02-11 18:47:25 +01:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache 2.0</name>
|
2020-02-17 23:42:27 +01:00
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
2016-02-11 18:47:25 +01:00
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2021-05-14 01:31:34 +02:00
|
|
|
<version>4.13.2</version>
|
2016-02-11 18:47:25 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2015-10-04 02:25:20 +02:00
|
|
|
<build>
|
2016-02-11 18:47:25 +01:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-10-04 00:08:39 +02:00
|
|
|
<version>3.8.1</version>
|
2019-10-04 01:36:15 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-compile</id>
|
|
|
|
<configuration>
|
|
|
|
<jdkToolchain>
|
|
|
|
<version>9</version>
|
|
|
|
</jdkToolchain>
|
|
|
|
<release>9</release>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>base-compile</id>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>module-info.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-02-11 18:47:25 +01:00
|
|
|
<configuration>
|
2019-10-04 01:36:15 +02:00
|
|
|
<jdkToolchain>
|
|
|
|
<version>[1.5,9)</version>
|
|
|
|
</jdkToolchain>
|
2019-10-04 00:08:39 +02:00
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
2016-02-11 18:47:25 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2017-09-20 03:36:59 +02:00
|
|
|
<version>2.10.4</version>
|
2016-02-11 18:47:25 +01:00
|
|
|
</plugin>
|
2016-02-23 17:25:21 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
</plugin>
|
2017-05-25 00:25:50 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2017-09-20 03:36:59 +02:00
|
|
|
<version>3.3.0</version>
|
2017-05-25 00:25:50 +02:00
|
|
|
<inherited>true</inherited>
|
|
|
|
</plugin>
|
2016-02-11 18:47:25 +01:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2015-10-04 02:25:20 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2017-09-20 03:36:59 +02:00
|
|
|
<version>2.5.3</version>
|
2016-02-11 18:47:25 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
2021-05-14 01:31:28 +02:00
|
|
|
<version>1.11.2</version>
|
2016-02-11 18:47:25 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-10-04 02:25:20 +02:00
|
|
|
<configuration>
|
2016-02-11 18:47:25 +01:00
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
2015-10-04 02:25:20 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-02-27 03:13:43 +01:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>doclint-java8-disable</id>
|
|
|
|
<activation>
|
2016-03-30 10:02:24 +02:00
|
|
|
<jdk>[1.8,)</jdk>
|
2016-02-27 03:13:43 +01:00
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2015-10-04 02:25:20 +02:00
|
|
|
</project>
|