This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
218 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Bundle-SymbolicName: io.primeval.jackson.guava18 | ||
Private-Package: com.fasterxml.jackson.datatype.guava;com.fasterxml.jackson.datatype.guava.* | ||
Private-Package: com.fasterxml.jackson.datatype.guava,com.fasterxml.jackson.datatype.guava.* | ||
Import-Package: com.google.common.*;version='[18,19)',* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Bundle-SymbolicName: io.primeval.jackson.guava21 | ||
Private-Package: com.fasterxml.jackson.datatype.guava;com.fasterxml.jackson.datatype.guava.* | ||
Private-Package: com.fasterxml.jackson.datatype.guava,com.fasterxml.jackson.datatype.guava.* | ||
Import-Package: com.google.common.*;version='[21,22)',* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Bundle-SymbolicName: io.primeval.jackson.guava23 | ||
Private-Package: com.fasterxml.jackson.datatype.guava,com.fasterxml.jackson.datatype.guava.* | ||
Import-Package: com.google.common.*;version='[23,24)',* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<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> | ||
<parent> | ||
<groupId>io.primeval</groupId> | ||
<artifactId>primeval-jackson-guava</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
|
||
<artifactId>primeval-jackson-guava23</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<name>Primeval Jackson Guava 23 Provider</name> | ||
<description>Primeval JSON Jackson Guava 23 Provider</description> | ||
|
||
<properties> | ||
<guava.version>23.4-jre</guava.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<!-- Override Guava version --> | ||
<version>${guava.version}</version><!--$NO-MVN-MAN-VER$ --> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> | ||
|
11 changes: 11 additions & 0 deletions
11
guava23/src/main/java/io/primeval/json/jackson/guava23/GuavaModulePublisher.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package io.primeval.json.jackson.guava23; | ||
|
||
import org.osgi.service.component.annotations.Component; | ||
|
||
import com.fasterxml.jackson.databind.Module; | ||
import com.fasterxml.jackson.datatype.guava.GuavaModule; | ||
|
||
@Component(service = Module.class) | ||
public final class GuavaModulePublisher extends GuavaModule { | ||
// Nothing, just publish GuavaModule | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.