This is an automated email from the ASF dual-hosted git repository.
jungm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/johnzon.git
The following commit(s) were added to refs/heads/master by this push:
new 8f22160f [JOHNZON-406] add API jars to bin distribution
8f22160f is described below
commit 8f22160feca563d82817d97199063c9aa8b6f381
Author: Markus Jung <[email protected]>
AuthorDate: Tue Jun 18 08:38:05 2024 +0200
[JOHNZON-406] add API jars to bin distribution
---
johnzon-distribution/pom.xml | 20 ++++++++++++++++++++
johnzon-distribution/src/assembly/bin.xml | 2 +-
2 files changed, 21 insertions(+), 1 deletion(-)
diff --git a/johnzon-distribution/pom.xml b/johnzon-distribution/pom.xml
index 5d2074c5..ebaa5277 100644
--- a/johnzon-distribution/pom.xml
+++ b/johnzon-distribution/pom.xml
@@ -140,6 +140,26 @@
<classifier>javadoc</classifier>
</dependency>
+ <dependency>
+ <groupId>jakarta.json.bind</groupId>
+ <artifactId>jakarta.json.bind-api</artifactId>
+ <version>${jakarta-jsonb-api.version}</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>jakarta.json.bind</groupId>
+ <artifactId>jakarta.json.bind-api</artifactId>
+ <version>${jakarta-jsonb-api.version}</version>
+ <scope>compile</scope>
+ <classifier>sources</classifier>
+ </dependency>
+ <dependency>
+ <groupId>jakarta.json.bind</groupId>
+ <artifactId>jakarta.json.bind-api</artifactId>
+ <version>${jakarta-jsonb-api.version}</version>
+ <scope>compile</scope>
+ <classifier>javadoc</classifier>
+ </dependency>
<dependency>
<groupId>org.apache.johnzon</groupId>
<artifactId>johnzon-jsonb</artifactId>
diff --git a/johnzon-distribution/src/assembly/bin.xml
b/johnzon-distribution/src/assembly/bin.xml
index d832bdfc..0d848758 100644
--- a/johnzon-distribution/src/assembly/bin.xml
+++ b/johnzon-distribution/src/assembly/bin.xml
@@ -31,7 +31,7 @@
<dependencySet>
<useProjectArtifact>false</useProjectArtifact>
<includes>
- <include>jakar:geronimo-json-*</include>
+ <include>jakarta.json*:jakarta.json*</include>
<include>org.apache.johnzon:johnzon-*</include>
</includes>
<outputDirectory>/</outputDirectory>