Skip to content

Commit d4ca0cc

Browse files
committed
Version settings-security model independently of JAR (impl/spec version)
A minor/major change in the latter does not necessarily imply a new settings security model.
1 parent 6c41a62 commit d4ca0cc

File tree

2 files changed

+5
-3
lines changed
  • src
    • main/java/org/codehaus/plexus/components/secdispatcher/internal
    • test/java/org/codehaus/plexus/components/secdispatcher/internal

2 files changed

+5
-3
lines changed

src/main/java/org/codehaus/plexus/components/secdispatcher/internal/SecUtil.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ public static void write(Path target, SettingsSecurity configuration, boolean do
110110
Path tempFile = parent.resolve(target.getFileName() + "."
111111
+ Long.toUnsignedString(ThreadLocalRandom.current().nextLong()) + ".tmp");
112112

113-
configuration.setModelVersion(specVersion());
113+
// always set manually as some features don't require changes in the underlying model but still require
114+
// adjustments of either minor or major version of the JAR
115+
configuration.setModelVersion("4.0");
114116
configuration.setModelEncoding(StandardCharsets.UTF_8.name());
115117

116118
try {

src/test/java/org/codehaus/plexus/components/secdispatcher/internal/SecUtilTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void readWrite() throws IOException {
6868
Path path = Path.of("./target/sec.xml");
6969
SettingsSecurity config = SecUtil.read(path);
7070
assertNotNull(config);
71-
assertEquals(SecUtil.specVersion(), config.getModelVersion());
71+
assertEquals("4.0", config.getModelVersion());
7272
assertEquals(StandardCharsets.UTF_8.name(), config.getModelEncoding());
7373
assertEquals("magic:mighty", config.getDefaultDispatcher());
7474
SecUtil.write(path, config, false);
@@ -79,7 +79,7 @@ void readWriteWithBackup() throws IOException {
7979
Path path = Path.of("./target/sec.xml");
8080
SettingsSecurity config = SecUtil.read(path);
8181
assertNotNull(config);
82-
assertEquals(SecUtil.specVersion(), config.getModelVersion());
82+
assertEquals("4.0", config.getModelVersion());
8383
assertEquals(StandardCharsets.UTF_8.name(), config.getModelEncoding());
8484
assertEquals("magic:mighty", config.getDefaultDispatcher());
8585
SecUtil.write(path, config, true);

0 commit comments

Comments
 (0)