This is an automated email from the ASF dual-hosted git repository.
ppkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/commons-secure-xml.git
The following commit(s) were added to refs/heads/main by this push:
new 279173b Update remaining references to old project name.
279173b is described below
commit 279173b4284480cdd994d204e55c4d179c530503
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Mon Aug 31 10:29:33 2026 +0200
Update remaining references to old project name.
Point repository URLs in README badges, SECURITY.md, and the POM SCM
section at commons-secure-xml, and fix the throwOnUnresolved system
property name in the SecureException javadoc to match the constant.
Assisted-By: Claude Fable 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01A9uqqZFmAHAiS1D2zqonMK
---
README.md | 6 +++---
SECURITY.md | 2 +-
pom.xml | 6 +++---
src/main/java/org/apache/commons/xml/secure/SecureException.java | 2 +-
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/README.md b/README.md
index a78f442..d7911ef 100644
--- a/README.md
+++ b/README.md
@@ -43,11 +43,11 @@
Apache Commons Secure XML
===================
-[](https://github.com/apache/commons-xml/actions/workflows/maven.yml)
+[](https://github.com/apache/commons-secure-xml/actions/workflows/maven.yml)
[](https://search.maven.org/artifact/org.apache.commons/commons-secure-xml)
[](https://javadoc.io/doc/org.apache.commons/commons-secure-xml/1.0.0)
-[](https://github.com/apache/commons-xml/actions/workflows/codeql-analysis.yml)
-[](https://api.securityscorecards.dev/projects/github.com/apache/commons-xml)
+[](https://github.com/apache/commons-secure-xml/actions/workflows/codeql-analysis.yml)
+[](https://api.securityscorecards.dev/projects/github.com/apache/commons-secure-xml)
Apache Commons Secure XML provides secure-by-default JAXP factory creation,
abstracting over
implementation-specific XXE securing differences between the stock JDK and
external JAXP implementations
diff --git a/SECURITY.md b/SECURITY.md
index 2866c1e..0e12026 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -18,4 +18,4 @@
Read the [Apache Commons Security
Page](https://commons.apache.org/security.html).
-Read the [Apache Commons Secure XML Threat
Model](https://github.com/apache/commons-xml/blob/main/src/site/markdown/threat_model.md).
+Read the [Apache Commons Secure XML Threat
Model](https://github.com/apache/commons-secure-xml/blob/main/src/site/markdown/threat_model.md).
diff --git a/pom.xml b/pom.xml
index b63dbe0..135b335 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,9 +32,9 @@ limitations under the License.
implementation-specific XXE securing differences between the stock JDK and
external JAXP implementations
(Android, Apache Xalan, Apache Xerces, Woodstox, Saxon-HE).</description>
<scm>
-
<connection>scm:git:https://gitbox.apache.org/repos/asf/commons-xml.git</connection>
-
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-xml.git</developerConnection>
- <url>https://gitbox.apache.org/repos/asf?p=commons-xml.git</url>
+
<connection>scm:git:https://gitbox.apache.org/repos/asf/commons-secure-xml.git</connection>
+
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-secure-xml.git</developerConnection>
+ <url>https://gitbox.apache.org/repos/asf?p=commons-secure-xml.git</url>
<tag>rel/commons-secure-xml-${project.version}</tag>
</scm>
<properties>
diff --git a/src/main/java/org/apache/commons/xml/secure/SecureException.java
b/src/main/java/org/apache/commons/xml/secure/SecureException.java
index 3a5dcca..bcfae3c 100644
--- a/src/main/java/org/apache/commons/xml/secure/SecureException.java
+++ b/src/main/java/org/apache/commons/xml/secure/SecureException.java
@@ -39,7 +39,7 @@ final class SecureException extends IllegalStateException {
/**
* System property that switches unresolved external references from the
default empty resolution to a thrown exception.
* <p>
- * How to enable: set {@code
-Dorg.apache.commons.xml.throwOnUnresolved=true}. The property is read at
resolution time, so it also applies to factories
+ * How to enable: set {@code
-Dorg.apache.commons.xml.secure.throwOnUnresolved=true}. The property is read
at resolution time, so it also applies to factories
* created before it was set; references resolved by a caller-supplied
resolver are unaffected.
* </p>
*/