Author: desruisseaux
Date: Mon Sep 29 22:34:27 2025
New Revision: 1928851

Log:
Change the tested CRS from "EPSG::3395" to "EPSG::6676" for reducing the risk 
that the code use a fallback.
Add the `with-epsg-embedded` sub-project to the parent `pom.xml`.

Modified:
   sis/release-test/maven/pom.xml
   
sis/release-test/maven/with-epsg/src/test/java/org/apache/sis/test/SelfConsistencyTest.java

Modified: sis/release-test/maven/pom.xml
==============================================================================
--- sis/release-test/maven/pom.xml      Mon Sep 29 22:30:41 2025        
(r1928850)
+++ sis/release-test/maven/pom.xml      Mon Sep 29 22:34:27 2025        
(r1928851)
@@ -124,5 +124,6 @@
 
   <modules>
     <module>with-epsg</module>
+    <module>with-epsg-embedded</module>
   </modules>
 </project>

Modified: 
sis/release-test/maven/with-epsg/src/test/java/org/apache/sis/test/SelfConsistencyTest.java
==============================================================================
--- 
sis/release-test/maven/with-epsg/src/test/java/org/apache/sis/test/SelfConsistencyTest.java
 Mon Sep 29 22:30:41 2025        (r1928850)
+++ 
sis/release-test/maven/with-epsg/src/test/java/org/apache/sis/test/SelfConsistencyTest.java
 Mon Sep 29 22:34:27 2025        (r1928851)
@@ -36,7 +36,7 @@ public class SelfConsistencyTest {
      */
     @Test
     public void testParseWKT() throws FactoryException {
-        CoordinateReferenceSystem crs = CRS.forCode("EPSG::3395");
+        CoordinateReferenceSystem crs = CRS.forCode("EPSG::6676");
         CoordinateReferenceSystem roundTrip = CRS.fromWKT(crs.toWKT());
         assertTrue(Utilities.equalsIgnoreMetadata(crs, roundTrip));
     }

Reply via email to