The changes are part of the work to move S1ASThreadPoolManager and
IIOPUtils from orb-iiop module to orb-connector module.
Index: orb-connector/pom.xml
===================================================================
--- orb-connector/pom.xml (revision 32982)
+++ orb-connector/pom.xml (working copy)
@@ -27,6 +27,11 @@
<dependencies>
<dependency>
<groupId>com.sun.corba</groupId>
+ <artifactId>glassfish-corba-orbgeneric</artifactId>
+ <version>${glassfish-corba.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.corba</groupId>
<artifactId>glassfish-corba-omgapi</artifactId>
<version>${glassfish-corba.version}</version>
</dependency>
Also, the following changes are required in the osgi.bundle(s).
Basically, orb-iiop need not export iiop.util package whereas
orb-connector needs to export iiop.util (since S1ASThreadPoolManager has
moved to orb-connector).
Index: orb-iiop/osgi.bundle
===================================================================
--- orb-iiop/osgi.bundle (revision 32982)
+++ orb-iiop/osgi.bundle (working copy)
@@ -1,5 +1,4 @@
-exportcontents: \
- org.glassfish.enterprise.iiop.util; \
org.glassfish.enterprise.iiop.impl; version=${project.osgi.version}
ORB-Class-Provider: org.glassfish.enterprise.iiop.impl.PEORBConfigurator \
Index: orb-connector/osgi.bundle
===================================================================
--- orb-connector/osgi.bundle (revision 32982)
+++ orb-connector/osgi.bundle (working copy)
@@ -1,5 +1,6 @@
-exportcontents: \
org.glassfish.enterprise.iiop.api; \
+ org.glassfish.enterprise.iiop.util; \
org.glassfish.enterprise.iiop.spi; version=${project.osgi.version}
Thanks,
--Mahesh