You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2022/10/04 12:33:22 UTC

[sling-org-apache-sling-starter] 01/02: Add required dependencies for o.a.s.xss 2.3.0

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch issue/xss-2.3.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter.git

commit 39e01a915452bbe6eeead28a716195de00f51914
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Apr 26 17:26:40 2022 +0200

    Add required dependencies for o.a.s.xss 2.3.0
---
 src/main/features/base.json                   | 4 ++++
 src/main/features/boot.json                   | 4 ++++
 src/main/features/models-jacksonexporter.json | 6 +++++-
 3 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/src/main/features/base.json b/src/main/features/base.json
index dcf1ff4..65de5e4 100644
--- a/src/main/features/base.json
+++ b/src/main/features/base.json
@@ -22,6 +22,10 @@
             "id":"org.apache.commons:commons-collections4:4.4",
             "start-order":"15"
         },
+        {
+            "id":"com.fasterxml.woodstox:woodstox-core:6.2.5",
+            "start-order":"15"
+        },        
         {
             "id":"org.apache.commons:commons-math:2.2",
             "start-order":"20"
diff --git a/src/main/features/boot.json b/src/main/features/boot.json
index 394c5dc..c6af122 100644
--- a/src/main/features/boot.json
+++ b/src/main/features/boot.json
@@ -112,6 +112,10 @@
             "id":"org.jvnet.staxex:stax-ex:1.8.3",
             "start-order":"1"
         },
+        {
+            "id":"org.codehaus.woodstox:stax2-api:4.2.1",
+            "start-order":"1"
+        },
         {
             "id":"org.osgi:org.osgi.service.log:1.5.0",
             "start-order":"1"
diff --git a/src/main/features/models-jacksonexporter.json b/src/main/features/models-jacksonexporter.json
index ac89222..a0bc1bf 100644
--- a/src/main/features/models-jacksonexporter.json
+++ b/src/main/features/models-jacksonexporter.json
@@ -13,9 +13,13 @@
             "id":"com.fasterxml.jackson.core:jackson-databind:${jackson.version}",
             "start-order":"20"
         },
+        {
+            "id":"com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jackson.version}",
+            "start-order":"20"
+        },
         {
             "id":"org.apache.sling:org.apache.sling.models.jacksonexporter:1.1.2",
             "start-order":"20"
         }
     ]
-}
\ No newline at end of file
+}