jrjackson 0.4.21-java → 0.5.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/jrjackson.gemspec +2 -1
- data/lib/com/fasterxml/jackson/core/jackson-annotations/2.21/jackson-annotations-2.21.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-core/2.21.2/jackson-core-2.21.2.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-databind/2.21.2/jackson-databind-2.21.2.jar +0 -0
- data/lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.21.2/jackson-module-afterburner-2.21.2.jar +0 -0
- data/lib/jrjackson/build_info.rb +10 -6
- data/lib/jrjackson/jars/jrjackson-1.3.0.jar +0 -0
- data/lib/jrjackson_jars.rb +8 -8
- data/pom.xml +12 -14
- metadata +11 -11
- data/lib/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.jar +0 -0
- data/lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.15.4/jackson-module-afterburner-2.15.4.jar +0 -0
- data/lib/jrjackson/jars/jrjackson-1.2.37.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f355fe668f2b538699cc74b823dfd1e7d4a33b847ad56a6aa39b8160714fe7b
|
|
4
|
+
data.tar.gz: a421e26f9b428da4587a678200ec6febb1e59bda99543793c27b49365ebf322c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32c90a333db20605e787172ee13cca7a56e83eafa8fff59654ba0dfbf550ce6ba7add9082669903611fafcffcbed0f5064e85c6397217ff094e261666e900c4c
|
|
7
|
+
data.tar.gz: 628e94099ea037f7f49fc37c3c1206418c67022416a378eb5c438c3ae7460a871d44208779b81e841381c1d4f58fc93ddb497474a13cab8677e5203707ccd7cd
|
data/jrjackson.gemspec
CHANGED
|
@@ -22,9 +22,10 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
s.add_development_dependency 'jar-dependencies', '>= 0.3.2'
|
|
23
23
|
|
|
24
24
|
jackson_version = JrJackson::BuildInfo.jackson_version
|
|
25
|
+
jackson_annotations_version = JrJackson::BuildInfo.jackson_annotations_version
|
|
25
26
|
jackson_databind_version = JrJackson::BuildInfo.jackson_databind_version
|
|
26
27
|
s.requirements << "jar com.fasterxml.jackson.core:jackson-core, #{jackson_version}"
|
|
27
|
-
s.requirements << "jar com.fasterxml.jackson.core:jackson-annotations, #{
|
|
28
|
+
s.requirements << "jar com.fasterxml.jackson.core:jackson-annotations, #{jackson_annotations_version}"
|
|
28
29
|
s.requirements << "jar com.fasterxml.jackson.core:jackson-databind, #{jackson_databind_version}"
|
|
29
30
|
s.requirements << "jar com.fasterxml.jackson.module:jackson-module-afterburner, #{jackson_version}"
|
|
30
31
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/jrjackson/build_info.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
module JrJackson
|
|
2
2
|
module BuildInfo
|
|
3
3
|
def self.version
|
|
4
|
-
'0.
|
|
4
|
+
'0.5.0'
|
|
5
5
|
end
|
|
6
6
|
|
|
7
7
|
def self.release_date
|
|
8
|
-
'2026-
|
|
8
|
+
'2026-04-17'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def self.files
|
|
@@ -13,15 +13,19 @@ module JrJackson
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
def self.jackson_version
|
|
16
|
-
'2.
|
|
16
|
+
'2.21.2'
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.jackson_annotations_version
|
|
20
|
+
'2.21'
|
|
17
21
|
end
|
|
18
22
|
|
|
19
23
|
def self.jackson_databind_version
|
|
20
|
-
'2.
|
|
24
|
+
'2.21.2'
|
|
21
25
|
end
|
|
22
26
|
|
|
23
27
|
def self.jar_version
|
|
24
|
-
'1.
|
|
28
|
+
'1.3.0'
|
|
25
29
|
end
|
|
26
30
|
|
|
27
31
|
private
|
|
@@ -36,7 +40,7 @@ module JrJackson
|
|
|
36
40
|
|
|
37
41
|
def self.generated_jar_files
|
|
38
42
|
[
|
|
39
|
-
"lib/com/fasterxml/jackson/core/jackson-annotations/#{
|
|
43
|
+
"lib/com/fasterxml/jackson/core/jackson-annotations/#{jackson_annotations_version}/jackson-annotations-#{jackson_annotations_version}.jar",
|
|
40
44
|
"lib/com/fasterxml/jackson/core/jackson-core/#{jackson_version}/jackson-core-#{jackson_version}.jar",
|
|
41
45
|
"lib/com/fasterxml/jackson/core/jackson-databind/#{jackson_databind_version}/jackson-databind-#{jackson_databind_version}.jar",
|
|
42
46
|
"lib/com/fasterxml/jackson/module/jackson-module-afterburner/#{jackson_version}/jackson-module-afterburner-#{jackson_version}.jar",
|
|
Binary file
|
data/lib/jrjackson_jars.rb
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
begin
|
|
3
3
|
require 'jar_dependencies'
|
|
4
4
|
rescue LoadError
|
|
5
|
-
require 'com/fasterxml/jackson/core/jackson-core/2.
|
|
6
|
-
require 'com/fasterxml/jackson/core/jackson-annotations/2.
|
|
7
|
-
require 'com/fasterxml/jackson/core/jackson-databind/2.
|
|
8
|
-
require 'com/fasterxml/jackson/module/jackson-module-afterburner/2.
|
|
5
|
+
require 'com/fasterxml/jackson/core/jackson-core/2.21.2/jackson-core-2.21.2.jar'
|
|
6
|
+
require 'com/fasterxml/jackson/core/jackson-annotations/2.21/jackson-annotations-2.21.jar'
|
|
7
|
+
require 'com/fasterxml/jackson/core/jackson-databind/2.21.2/jackson-databind-2.21.2.jar'
|
|
8
|
+
require 'com/fasterxml/jackson/module/jackson-module-afterburner/2.21.2/jackson-module-afterburner-2.21.2.jar'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
if defined? Jars
|
|
12
|
-
require_jar 'com.fasterxml.jackson.core', 'jackson-core', '2.
|
|
13
|
-
require_jar 'com.fasterxml.jackson.core', 'jackson-annotations', '2.
|
|
14
|
-
require_jar 'com.fasterxml.jackson.core', 'jackson-databind', '2.
|
|
15
|
-
require_jar 'com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.
|
|
12
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-core', '2.21.2'
|
|
13
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-annotations', '2.21'
|
|
14
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-databind', '2.21.2'
|
|
15
|
+
require_jar 'com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.21.2'
|
|
16
16
|
end
|
data/pom.xml
CHANGED
|
@@ -11,7 +11,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
|
12
12
|
<groupId>com.jrjackson.jruby</groupId>
|
|
13
13
|
<artifactId>jrjackson</artifactId>
|
|
14
|
-
<version>1.
|
|
14
|
+
<version>1.3.0</version>
|
|
15
15
|
<name>A JRuby wrapper for the java jackson json processor jar</name>
|
|
16
16
|
<description>A mostly native JRuby wrapper for the java jackson json processor jar</description>
|
|
17
17
|
<url>http://github.com/guyboertje/jrjackson</url>
|
|
@@ -34,6 +34,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
34
34
|
</scm>
|
|
35
35
|
<properties>
|
|
36
36
|
<jruby.plugins.version>3.0.0</jruby.plugins.version>
|
|
37
|
+
<maven.compiler.release>11</maven.compiler.release>
|
|
37
38
|
<mavengem.wagon.version>2.0.0</mavengem.wagon.version>
|
|
38
39
|
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
|
|
39
40
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
@@ -55,22 +56,22 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
55
56
|
<dependency>
|
|
56
57
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
57
58
|
<artifactId>jackson-core</artifactId>
|
|
58
|
-
<version>2.
|
|
59
|
+
<version>2.21.2</version>
|
|
59
60
|
</dependency>
|
|
60
61
|
<dependency>
|
|
61
62
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
62
63
|
<artifactId>jackson-annotations</artifactId>
|
|
63
|
-
<version>2.
|
|
64
|
+
<version>2.21</version>
|
|
64
65
|
</dependency>
|
|
65
66
|
<dependency>
|
|
66
67
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
67
68
|
<artifactId>jackson-databind</artifactId>
|
|
68
|
-
<version>2.
|
|
69
|
+
<version>2.21.2</version>
|
|
69
70
|
</dependency>
|
|
70
71
|
<dependency>
|
|
71
72
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
72
73
|
<artifactId>jackson-module-afterburner</artifactId>
|
|
73
|
-
<version>2.
|
|
74
|
+
<version>2.21.2</version>
|
|
74
75
|
</dependency>
|
|
75
76
|
<dependency>
|
|
76
77
|
<groupId>junit</groupId>
|
|
@@ -81,7 +82,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
81
82
|
<dependency>
|
|
82
83
|
<groupId>org.jruby</groupId>
|
|
83
84
|
<artifactId>jruby</artifactId>
|
|
84
|
-
<version>9.
|
|
85
|
+
<version>9.4.14.0</version>
|
|
85
86
|
<scope>provided</scope>
|
|
86
87
|
</dependency>
|
|
87
88
|
</dependencies>
|
|
@@ -119,7 +120,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
119
120
|
</executions>
|
|
120
121
|
<configuration>
|
|
121
122
|
<outputDirectory>lib/jrjackson/jars</outputDirectory>
|
|
122
|
-
<finalName>jrjackson-1.
|
|
123
|
+
<finalName>jrjackson-1.3.0</finalName>
|
|
123
124
|
</configuration>
|
|
124
125
|
</plugin>
|
|
125
126
|
<plugin>
|
|
@@ -130,7 +131,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
130
131
|
<fileset>
|
|
131
132
|
<directory>lib/jrjackson/jars</directory>
|
|
132
133
|
<includes>
|
|
133
|
-
<include>jrjackson-1.
|
|
134
|
+
<include>jrjackson-1.3.0.jar</include>
|
|
134
135
|
<include>*/**/*.jar</include>
|
|
135
136
|
</includes>
|
|
136
137
|
</fileset>
|
|
@@ -147,21 +148,18 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
147
148
|
</plugin>
|
|
148
149
|
<plugin>
|
|
149
150
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
150
|
-
<version>3.
|
|
151
|
+
<version>3.11.0</version>
|
|
151
152
|
<configuration>
|
|
152
|
-
<
|
|
153
|
-
<target>1.8</target>
|
|
153
|
+
<release>11</release>
|
|
154
154
|
<showDeprecation>false</showDeprecation>
|
|
155
155
|
<showWarnings>false</showWarnings>
|
|
156
|
-
<executable>${JAVA_HOME}/bin/javac</executable>
|
|
157
|
-
<fork>true</fork>
|
|
158
156
|
</configuration>
|
|
159
157
|
</plugin>
|
|
160
158
|
<plugin>
|
|
161
159
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
162
160
|
<version>2.17</version>
|
|
163
161
|
<configuration>
|
|
164
|
-
<skipTests>
|
|
162
|
+
<skipTests>false</skipTests>
|
|
165
163
|
</configuration>
|
|
166
164
|
</plugin>
|
|
167
165
|
</plugins>
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jrjackson
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Guy Boertje
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-04-17 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: bigdecimal
|
|
@@ -46,13 +46,13 @@ extra_rdoc_files: []
|
|
|
46
46
|
files:
|
|
47
47
|
- README.md
|
|
48
48
|
- jrjackson.gemspec
|
|
49
|
-
- lib/com/fasterxml/jackson/core/jackson-annotations/2.
|
|
50
|
-
- lib/com/fasterxml/jackson/core/jackson-core/2.
|
|
51
|
-
- lib/com/fasterxml/jackson/core/jackson-databind/2.
|
|
52
|
-
- lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.
|
|
49
|
+
- lib/com/fasterxml/jackson/core/jackson-annotations/2.21/jackson-annotations-2.21.jar
|
|
50
|
+
- lib/com/fasterxml/jackson/core/jackson-core/2.21.2/jackson-core-2.21.2.jar
|
|
51
|
+
- lib/com/fasterxml/jackson/core/jackson-databind/2.21.2/jackson-databind-2.21.2.jar
|
|
52
|
+
- lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.21.2/jackson-module-afterburner-2.21.2.jar
|
|
53
53
|
- lib/jrjackson.rb
|
|
54
54
|
- lib/jrjackson/build_info.rb
|
|
55
|
-
- lib/jrjackson/jars/jrjackson-1.
|
|
55
|
+
- lib/jrjackson/jars/jrjackson-1.3.0.jar
|
|
56
56
|
- lib/jrjackson/jrjackson.rb
|
|
57
57
|
- lib/jrjackson_jars.rb
|
|
58
58
|
- lib/require_relative_patch.rb
|
|
@@ -75,10 +75,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements:
|
|
78
|
-
- jar com.fasterxml.jackson.core:jackson-core, 2.
|
|
79
|
-
- jar com.fasterxml.jackson.core:jackson-annotations, 2.
|
|
80
|
-
- jar com.fasterxml.jackson.core:jackson-databind, 2.
|
|
81
|
-
- jar com.fasterxml.jackson.module:jackson-module-afterburner, 2.
|
|
78
|
+
- jar com.fasterxml.jackson.core:jackson-core, 2.21.2
|
|
79
|
+
- jar com.fasterxml.jackson.core:jackson-annotations, 2.21
|
|
80
|
+
- jar com.fasterxml.jackson.core:jackson-databind, 2.21.2
|
|
81
|
+
- jar com.fasterxml.jackson.module:jackson-module-afterburner, 2.21.2
|
|
82
82
|
rubygems_version: 3.7.2
|
|
83
83
|
specification_version: 4
|
|
84
84
|
summary: A JRuby wrapper for the java jackson json processor jar
|
data/lib/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.jar
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|