Skip to content

Commit

Permalink
Enable jakarta.json.provider system property to work in JPMS apps. Pr…
Browse files Browse the repository at this point in the history
…ovide explicit API to create JsonProvider instance #129

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
  • Loading branch information
jbescos authored and lukasj committed May 20, 2024
1 parent d6c922a commit b23e460
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion impl/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2023 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -20,5 +20,6 @@
module org.eclipse.parsson {
requires transitive jakarta.json;
exports org.eclipse.parsson.api;
opens org.eclipse.parsson to jakarta.json;
provides jakarta.json.spi.JsonProvider with org.eclipse.parsson.JsonProviderImpl;
}

0 comments on commit b23e460

Please sign in to comment.