gson-comments/extras/pom.xml

96 lines
2.8 KiB
XML
Raw Normal View History

<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">
2011-05-13 20:30:20 +02:00
<modelVersion>4.0.0</modelVersion>
<parent>
2022-05-12 23:23:14 +02:00
<groupId>io.gitlab.jfronny</groupId>
<artifactId>gson-parent</artifactId>
<version>2.11.0-SNAPSHOT</version>
</parent>
2011-05-13 20:30:20 +02:00
<artifactId>gson-extras</artifactId>
<inceptionYear>2008</inceptionYear>
<name>Gson Extras</name>
<description>Google Gson grab bag of utilities, type adapters, etc.</description>
2011-05-13 20:30:20 +02:00
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
2011-05-13 20:30:20 +02:00
</license>
</licenses>
2011-05-13 20:30:20 +02:00
<organization>
<name>Google, Inc.</name>
<url>https://www.google.com</url>
2011-05-13 20:30:20 +02:00
</organization>
2011-05-13 20:30:20 +02:00
<dependencies>
<dependency>
2022-05-12 23:23:14 +02:00
<groupId>io.gitlab.jfronny</groupId>
2011-05-13 20:30:20 +02:00
<artifactId>gson</artifactId>
<version>${project.parent.version}</version>
2011-05-13 20:30:20 +02:00
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
</dependency>
2011-05-13 20:30:20 +02:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
2011-05-13 20:30:20 +02:00
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- Currently not deployed -->
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
2022-11-24 17:54:26 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>com.google.gson</pattern>
<shadedPattern>io.gitlab.jfronny.gson</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
2011-05-13 20:30:20 +02:00
</build>
2011-05-13 20:30:20 +02:00
<developers>
<developer>
<name>Inderjeet Singh</name>
</developer>
<developer>
<name>Joel Leitch</name>
<organization>Google Inc.</organization>
</developer>
<developer>
<name>Jesse Wilson</name>
<organization>Square Inc.</organization>
2011-05-13 20:30:20 +02:00
</developer>
</developers>
</project>