🌐
GitHub
github.com › google › gson
GitHub - google/gson: A Java serialization/deserialization library to convert Java Objects into JSON and back · GitHub
These are the optional Java Platform Module System (JPMS) JDK modules which Gson depends on.
Starred by 24.3K users
Forked by 4.4K users
Languages   Java
open-source Java library to serialize and deserialize Java objects to and from JSON
Gson, or Google Gson, is an open-source Java library that serializes Java objects to JSON (and deserializes them back to Java). The Gson library was originally developed for internal purposes at Google, … Wikipedia
Factsheet
Google Gson
Developer Google
Initial release May 22, 2008; 17 years ago (2008-05-22)
Factsheet
Google Gson
Developer Google
Initial release May 22, 2008; 17 years ago (2008-05-22)
🌐
Maven Repository
mvnrepository.com › artifact › com.google.code.gson › gson
Maven Repository: com.google.code.gson » gson
September 10, 2025 - Dependency Injection · XML Processing · Concurrency Libraries · Web Frameworks · Android Platform · Code Generators · View All · Home » com.google.code.gson » gson · Gson is a Java library that can be used to convert Java Objects into their JSON representation.
🌐
Maven Central
central.sonatype.com › artifact › com.google.code.gson › gson
Maven Central - com.google.code.gson - Sonatype
Dependencies · Gson JSON library · Copy to clipboard · <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.13.2</version> </dependency> Copy to clipboard · <?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2008 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
🌐
GitHub
google.github.io › gson › UserGuide.html
Gson User Guide | gson
To use Gson with Maven2/3, you can use the Gson version available in Maven Central by adding the following dependency:
🌐
Atlassian Developer Community
community.developer.atlassian.com › confluence development › confluence data center
Com.google.code.gson:gson is a banned dependency - Confluence Data Center - The Atlassian Developer Community
April 4, 2024 - Hello! Working on 8.9 compatibility (and preparing for 9.0 compatibility), I updated to AMPS 8.15.0, go to build, and: [WARNING] Rule 0: org.apache.maven.plugins.enforcer.BannedDependencies failed with message: make sure platform artifacts are not bundled into plugin Found Banned Dependency: com.google.code.gson:gson:jar:2.10.1 Use 'mvn dependency:tree' to locate the source of banned dependencies.
🌐
HowToDoInJava
howtodoinjava.com › home › spring boot 2 › gson with spring boot: dependency and example
Gson with Spring Boot: Dependency and Example
September 5, 2023 - With dependency inclusion, Spring Boot detects Gson on the classpath and creates a Gson bean with sensible defaults.
Find elsewhere
🌐
Medium
medium.com › @zorbeytorunoglu › gson-on-android-9a6c34cb7044
Gson on Android | Medium
May 18, 2024 - To use Gson in an Android project, you typically include it as a dependency in your build.gradle file.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › community › posts › 206813395-using-gson
using gson – IDEs Support (IntelliJ Platform) | JetBrains
September 17, 2015 - For anyone in the future still looking for an answer to this question, to add a dependency to an Intellij project, such as Google's Gson, go to File -> Project Structure -> Modules.
🌐
GitHub
github.com › google › gson › releases
Releases · google/gson
The main changes in this release are just newer dependencies. Improved packaging of JPMS module declaration in Gson jar This fixes an issue where Eclipse and VS Code users could not refer to the Gson module name com.google.gson.
Author   google
🌐
Maven Central
central.sonatype.com › artifact › com.google.code.gson › gson › 2.9.1
com.google.code.gson:gson:2.9.1 - Maven Central
Dependencies · Gson JSON library · Copy to clipboard · <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.9.1</version> </dependency> Copy to clipboard ·
🌐
GeeksforGeeks
geeksforgeeks.org › java › how-to-install-gson-module-in-java
How to Install GSON Module in Java? - GeeksforGeeks
March 2, 2022 - Download the latest GSON archive: https://search.maven.org/artifact/com.google.code.gson/gson/2.8.6/jar (or) Maven: <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.6</version> </dependency>
🌐
Jenkov
jenkov.com › tutorials › java-json › gson-installation.html
GSON - Installation
June 13, 2015 - To use GSON in your Java application you need to include the GSON JAR file in the classpath of your Java application. You can do so either by adding GSON as a Maven dependency to your project, or by downloading the JAR file and include it in ...
🌐
Maven Central
central.sonatype.com › artifact › com.google.code.gson › gson › 2.10.1
com.google.code.gson:gson:2.10.1 - Maven Central
Dependencies · Gson JSON library · Copy to clipboard · <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> </dependency> Copy to clipboard ·
🌐
Maven Repository
mvnrepository.com › artifact › com.google.code.gson › gson › 2.8.5
Maven Repository: com.google.code.gson » gson » 2.8.5
May 22, 2018 - Dependency Injection · XML Processing · Concurrency Libraries · Web Frameworks · Android Platform · Code Generators · View All · Home » com.google.code.gson » gson » 2.8.5 · Gson is a Java library that can be used to convert Java Objects into their JSON representation.
Published   May 22, 2018
Version   2.8.5
🌐
Sourcecodeexamples
sourcecodeexamples.net › 2019 › 12 › gson-maven-dependency.html
Gson Maven Dependency
December 3, 2019 - Gson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object. Check out the Gson tutorial at https://www.javaguides.net/p/google-gs...
🌐
Medium
medium.com › codex › gson-library-in-java-216a09298d8f
Gson Library in Java. com.google.code.gson | by 1000x Coder | CodeX | Medium
April 24, 2023 - First, you need to add the Gson library to your project. You can do this by adding the following dependency to your pom.xml file if you're using Maven: