Download gson-javatime-serialisers-1.1.1.jar file

Introduction

You can download gson-javatime-serialisers-1.1.1.jar in this page.

License

The MIT License (MIT)

Type List

gson-javatime-serialisers-1.1.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.fatboyindustrial.gson-javatime-serialisers/gson-javatime-serialisers/pom.properties
META-INF/maven/com.fatboyindustrial.gson-javatime-serialisers/gson-javatime-serialisers/pom.xml
com.fatboyindustrial.gsonjavatime.Converters.class
com.fatboyindustrial.gsonjavatime.InstantConverter.class
com.fatboyindustrial.gsonjavatime.LocalDateConverter.class
com.fatboyindustrial.gsonjavatime.LocalDateTimeConverter.class
com.fatboyindustrial.gsonjavatime.LocalTimeConverter.class
com.fatboyindustrial.gsonjavatime.OffsetDateTimeConverter.class
com.fatboyindustrial.gsonjavatime.OffsetTimeConverter.class
com.fatboyindustrial.gsonjavatime.ZonedDateTimeConverter.class

Pom

gson-javatime-serialisers-1.1.1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ GSON Java Time Serialisers
  ~
  ~ Copyright 2014 Greg Kopff
  ~ All rights reserved.
  ~
  ~ Permission is hereby granted, free of charge, to any person obtaining a copy
  ~ of this software and associated documentation files (the "Software"), to deal
  ~ in the Software without restriction, including without limitation the rights
  ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  ~ copies of the Software, and to permit persons to whom the Software is
  ~ furnished to do so, subject to the following conditions:
  ~
  ~ The above copyright notice and this permission notice shall be included in
  ~ all copies or substantial portions of the Software.
  ~
  ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  ~ THE SOFTWARE.
  -->

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.fatboyindustrial.gson-javatime-serialisers</groupId>
  <artifactId>gson-javatime-serialisers</artifactId>
  <version>1.1.1</version>
  <packaging>jar</packaging>

  <name>gson-javatime-serialisers</name>
  <description>A set of GSON serialisers/deserialisers for dealing with Java 8 java.time entities.</description>
  <url>https://github.com/gkopff/gson-javatime-serialisers</url>

  <licenses>
    <license>
      <name>The MIT License (MIT)</name>
      <url>http://github.com/gkopff/gson-javatime-serialisers/blob/master/LICENSE.txt</url>
    </license>
  </licenses>

  <scm>
    <url>https://github.com/gkopff/gson-javatime-serialisers</url>
    <connection>scm:git:https://github.com/gkopff/gson-javatime-serialisers.git</connection>
    <developerConnection>scm:git:git@github.com:gkopff/gson-javatime-serialisers.git</developerConnection>
  </scm>
  
  <developers>
    <developer>
      <id>gkopff</id>
      <name>Greg Kopff</name>
      <timezone>+8</timezone>
    </developer>
  </developers>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.0</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.2.2</version>
        <configuration>
          <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.4</version>
            <configuration>
              <passphrase>${gpg.passphrase}</passphrase>
            </configuration>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

  <distributionManagement>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype Nexus snapshot repository</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>sonatype-nexus-staging</id>
      <name>Sonatype Nexus release repository</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>

  <dependencies>
    <dependency>                               <!-- JUnit -->
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>                               <!-- Hamcrest matchers -->
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-all</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>                               <!-- GSON -->
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.3.1</version>
    </dependency>
  </dependencies>

</project>

POM Entry

<dependency>
   <groupId>com.fatboyindustrial.gson-javatime-serialisers</groupId>
   <artifactId>gson-javatime-serialisers</artifactId>
   <version>1.1.1</version>
</dependency>

Download

If you think the following gson-javatime-serialisers-1.1.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download gson-javatime-serialisers-1.1.1.jar file




PreviousNext

Related