Skip to content

Commit b148fa2

Browse files
committed
[bugfix] Fix XML-RPC support in OxygenXML Editor (fixes regression introduced in commit: b1fa171)
1 parent b54fe75 commit b148fa2

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

exist-core/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,7 @@
758758
<include>src/main/java/org/exist/test/runner/XSuite.java</include>
759759
<include>src/main/java/org/exist/util/Collations.java</include>
760760
<include>src/main/java/org/exist/util/crypto/digest/DigestType.java</include>
761+
<include>src/main/java/org/exist/webstart/JnlpJarFiles.java</include>
761762
<include>src/main/java/org/exist/xmldb/RemoteRestoreService.java</include>
762763
<include>src/main/java/org/exist/xmlrpc/ExistRpcTypeFactory.java</include>
763764
<include>src/main/java/org/exist/xquery/functions/fn/FunUriCollection.java</include>
@@ -878,6 +879,7 @@
878879
<exclude>src/main/java/org/exist/test/runner/XSuite.java</exclude>
879880
<exclude>src/main/java/org/exist/util/Collations.java</exclude>
880881
<exclude>src/main/java/org/exist/util/crypto/digest/DigestType.java</exclude>
882+
<exclude>src/main/java/org/exist/webstart/JnlpJarFiles.java</exclude>
881883
<exclude>src/main/java/org/exist/xmldb/RemoteRestoreService.java</exclude>
882884
<exclude>src/main/java/org/exist/xmlrpc/ExistRpcTypeFactory.java</exclude>
883885
<exclude>src/main/java/org/exist/xquery/functions/fn/FunUriCollection.java</exclude>

exist-core/src/main/java/org/exist/webstart/JnlpJarFiles.java

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
11
/*
2+
* Elemental
3+
* Copyright (C) 2024, Evolved Binary Ltd
4+
*
5+
6+
* https://www.evolvedbinary.com | https://www.elemental.xyz
7+
*
8+
* This library is free software; you can redistribute it and/or
9+
* modify it under the terms of the GNU Lesser General Public
10+
* License as published by the Free Software Foundation; version 2.1.
11+
*
12+
* This library is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15+
* Lesser General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public
18+
* License along with this library; if not, write to the Free Software
19+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20+
*
21+
* NOTE: Parts of this file contain code from 'The eXist-db Authors'.
22+
* The original license header is included below.
23+
*
24+
* =====================================================================
25+
*
226
* eXist-db Open Source Native XML Database
327
* Copyright (C) 2001 The eXist-db Authors
428
*
@@ -60,7 +84,7 @@ public class JnlpJarFiles {
6084
"commons-logging-%latest%",
6185
"commons-pool-%latest%",
6286
"jargo-%latest%",
63-
"bcprov-jdk15on-%latest%",
87+
"bcprov-jdk18on-%latest%",
6488
"fastutil-%latest%-min",
6589
"j8fu-%latest%",
6690
"jackson-core-%latest%",

0 commit comments

Comments
 (0)