Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade to org.json:json:20180130 fixes synchrony/smsn-mode#29 #68

Merged
merged 1 commit into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion brain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
implementation project(':smsn-core')
implementation project(':smsn-rdf')

implementation 'org.json:json:20220924'
implementation 'org.json:json:20180130'

implementation group: 'org.apache.tinkerpop', name: 'gremlin-core', version: tinkerpopVersion
implementation group: 'org.apache.tinkerpop', name: 'tinkergraph-gremlin', version: tinkerpopVersion
Expand Down
2 changes: 1 addition & 1 deletion smsn-core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
// implementation group: 'org.json', name: 'json', version: '20080701'
// implementation 'org.json:json:20220924'
// implementation 'org.json:json:20230618'

implementation group: 'org.yaml', name: 'snakeyaml', version: '1.15'

Expand Down
2 changes: 1 addition & 1 deletion smsn-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies {
implementation group: 'org.apache.tinkerpop', name: 'gremlin-core', version: tinkerpopVersion
implementation group: 'org.apache.tinkerpop', name: 'gremlin-server', version: tinkerpopVersion
implementation group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '4.8.0.201705170830-rc1'
implementation 'org.json:json:20220924'
implementation 'org.json:json:20180130'
implementation 'commons-io:commons-io:2.11.0'

implementation(group: 'net.fortytwo.rdfagents', name: 'rdfagents-core', version: rdfagentsVersion) {
Expand Down
2 changes: 1 addition & 1 deletion smsn-services/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
implementation project(':smsn-core')
implementation project(':smsn-rdf')
implementation 'org.json:json:20220924'
implementation 'org.json:json:20180130'
implementation group: 'org.openrdf.sesame', name: 'sesame-rio-api', version: sesameVersion
implementation group: 'net.fortytwo.stream', name: 'stream42-sparql', version: stream42Version
implementation(group: 'net.fortytwo.rdfagents', name: 'rdfagents-core', version: rdfagentsVersion) {
Expand Down