Skip to content

Commit e6880dd

Browse files
updating pom.xml in root and e2e-entity
- Add Jettison with <scope>test</scope> in e2e-entity to restore test compilation - Fix typo in root Surefire config: <classpathDependencyExcludes> → <classpathDependencyExclude> This will ensure all Jettison-specific tests continue to run and validate behavior Signed-off-by: stecurran-est-tech <[email protected]>
1 parent 1f9b781 commit e6880dd

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@
10911091
<additionalClasspathElement>${xdk.absolute.path}</additionalClasspathElement>
10921092
</additionalClasspathElements>
10931093
<classpathDependencyExcludes>
1094-
<classpathDependencyExcludes>xerces:xercesImpl</classpathDependencyExcludes>
1094+
<classpathDependencyExclude>xerces:xercesImpl</classpathDependencyExclude>
10951095
</classpathDependencyExcludes>
10961096
</configuration>
10971097
</plugin>

tests/e2e-entity/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,12 @@
9191
<artifactId>jersey-media-json-jackson</artifactId>
9292
<scope>test</scope>
9393
</dependency>
94+
<dependency>
95+
<groupId>org.codehaus.jettison</groupId>
96+
<artifactId>jettison</artifactId>
97+
<version>${jettison.version}</version>
98+
<scope>test</scope>
99+
</dependency>
94100
<dependency>
95101
<groupId>org.glassfish.jersey.media</groupId>
96102
<artifactId>jersey-media-json-jackson1</artifactId>

0 commit comments

Comments
 (0)