pki-servlet-engine/0002-ascheel-Add-javax.xml.soap.patch
Alexander Scheel f5b68890a2
Fix Tomcat build for RHEL 9.0.0 beta
Notably, I checked in two patches:

 - 0001-ascheel-Update-to-JDK-Version-11 is UNUSED, but present in case
   it is useful in the future. This was a relatively easy hack on the
   build file, but didn't prove useful; I disabled it.
 - 0002-ascheel-Add-javax.xml.soap.patch, which adds the missing
   javax.xml.soap (removed from JDK 9+) from the jakarta package. This
   package is already in RHEL 9 and so should be safe to add.

Signed-off-by: Alexander Scheel <ascheel@redhat.com>
2021-03-01 13:35:35 -05:00

31 lines
814 B
Diff

From 03ed73f56fdbb934ed3c9d6315a797835ae4cea9 Mon Sep 17 00:00:00 2001
From: Alexander Scheel <ascheel@redhat.com>
Date: Thu, 25 Feb 2021 09:49:54 -0500
Subject: [PATCH] Add javax.xml.soap?
Signed-off-by: Alexander Scheel <ascheel@redhat.com>
---
build.xml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build.xml b/build.xml
index 6664b7a..44888b1 100644
--- a/build.xml
+++ b/build.xml
@@ -220,10 +220,12 @@
<pathelement location="${jdt.jar}"/>
<!-- ant.jar reference for maven build to use -->
<pathelement location="${ant.jar}"/>
+ <pathelement location="${jakarta-saaj.jar}"/>
</path>
<path id="tomcat.classpath">
<pathelement path="${test.run.classes}"/>
+ <pathelement location="${jakarta-saaj.jar}"/>
</path>
<path id="tomcat.test.classpath">
--
2.29.2