[JBoss JIRA] Created: (EJBTHREE-1690) jboss-ejb3-core has has a transitive dependency on jboss-servlet-api
by Shelly McGowan (JIRA)
jboss-ejb3-core has has a transitive dependency on jboss-servlet-api
--------------------------------------------------------------------
Key: EJBTHREE-1690
URL: https://jira.jboss.org/jira/browse/EJBTHREE-1690
Project: EJB 3.0
Issue Type: Bug
Reporter: Shelly McGowan
Assignee: Carlo de Wolf
Testing Branch_5_0 with the 5.0.1.GA jboss-javee release containing the removal of the jboss-servlet-apis exposed a transitive dependency on those APIs from jboss-ejb3-core:
[INFO] +- org.jboss.ejb3:jboss-ejb3-core:jar:client:1.0.0-Beta11:compile
[INFO] | +- org.jboss.integration:jboss-jca-spi:jar:5.0.3.GA:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-async:jar:0.1.1:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-cache:jar:0.13.0:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-common:jar:1.0.0-Beta4:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-security:jar:1.0.0-Beta2:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-ext-api:jar:0.4:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-ext-api-impl:jar:0.4.1:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-interceptors:jar:1.0.0-Beta4:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-metadata:jar:0.13.0:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-proxy:jar:1.0.0-Beta6:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-proxy-clustered:jar:1.0.0-Beta3:compile
[INFO] | +- org.jboss.ejb3:jboss-ejb3-transactions:jar:1.0.0-Beta1:compile
[INFO] | +- org.jboss.javaee:jboss-servlet-api:jar:2.5.0.CR1:compile <============================
[INFO] | +- org.jboss.jpa:jboss-jpa-deployers:jar:1.0.0-Beta4:compile
[INFO] | +- sun-jaxws:jaxws-api:jar:2.1.1:compile
[INFO] | \- sun-jaxws:jsr181-api:jar:2.1.1:compile
My testing is currently being done with an explicit exclusion in component-matrix/pom.xml.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 10 months
[JBoss JIRA] Created: (JBOSGI-40) Cannot run embedded tests with SecurityManager
by Thomas Diesler (JIRA)
Cannot run embedded tests with SecurityManager
----------------------------------------------
Key: JBOSGI-40
URL: https://jira.jboss.org/jira/browse/JBOSGI-40
Project: JBoss OSGi
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Framework
Reporter: Thomas Diesler
Assignee: Thomas Diesler
Fix For: JBossOSGi 1.0.x
It seem that this is related to the presents of a SecurityManager.
Running org.jboss.test.osgi.jbosgi38.OSGI38TestCase
java.lang.NoClassDefFoundError: org.osgi.vendor.framework property not set
at org.osgi.framework.AdminPermission$ImplHolder.run(AdminPermission.java:166)
at java.security.AccessController.doPrivileged(Native Method)
at org.osgi.framework.AdminPermission$ImplHolder.<clinit>(AdminPermission.java:153)
at org.osgi.framework.AdminPermission.<init>(AdminPermission.java:279)
at org.apache.felix.framework.Felix.installBundle(Felix.java:2379)
at org.apache.felix.framework.Felix.installBundle(Felix.java:2278)
at org.apache.felix.framework.BundleContextImpl.installBundle(BundleContextImpl.java:122)
at org.apache.felix.framework.BundleContextImpl.installBundle(BundleContextImpl.java:108)
at org.jboss.test.osgi.jbosgi38.OSGI38TestCase.testInstallStartX(OSGI38TestCase.java:59)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 10 months
[JBoss JIRA] Updated: (JBAS-1796) Review project dependencies and create proper abstractions
by Jesper Pedersen (JIRA)
[ https://jira.jboss.org/jira/browse/JBAS-1796?page=com.atlassian.jira.plug... ]
Jesper Pedersen updated JBAS-1796:
----------------------------------
Attachment: tattletale-report-rev85182.zip
> Review project dependencies and create proper abstractions
> ----------------------------------------------------------
>
> Key: JBAS-1796
> URL: https://jira.jboss.org/jira/browse/JBAS-1796
> Project: JBoss Application Server
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: Other
> Reporter: Adrian Brock
> Priority: Critical
> Fix For: Backlog
>
> Attachments: tattletale-report-rev85182.zip
>
>
> I am getting singlularly fed up with people doing their own integrations
> in such a way that every project needs to depend directly on everything
> in thirdparty and every other project.
> Some people need to go on a course to learn the meaning of abstraction.
> e.g.
> The server module is an integration project. It should not be directly dependent
> on implementation details of Xerces:
> package org.jboss.webservice.metadata.wsdl;
> import org.apache.xerces.xs.XSComplexTypeDefinition;
> import org.apache.xerces.xs.XSTypeDefinition;
> import org.jboss.webservice.metadata.wsdl.WSDLConstants;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDComplexType;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDElement;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDSchema;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDSimpleType;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDType;
> import javax.xml.namespace.QName;
> import java.io.File;
> import java.io.FileWriter;
> import java.io.IOException;
> import java.lang.reflect.Field;
> import java.lang.reflect.Method;
> import java.lang.reflect.Modifier;
> import java.net.URL;
> import java.util.ArrayList;
> import java.util.HashMap;
> import java.util.Iterator;
> import java.util.List;
> import java.util.Map;
> public class WSDLUtils
> {
> private String newline = System.getProperty("line.separator");
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 10 months
[JBoss JIRA] Updated: (JBAS-1796) Review project dependencies and create proper abstractions
by Jesper Pedersen (JIRA)
[ https://jira.jboss.org/jira/browse/JBAS-1796?page=com.atlassian.jira.plug... ]
Jesper Pedersen updated JBAS-1796:
----------------------------------
Attachment: (was: tattletale-report-rev84586.zip)
> Review project dependencies and create proper abstractions
> ----------------------------------------------------------
>
> Key: JBAS-1796
> URL: https://jira.jboss.org/jira/browse/JBAS-1796
> Project: JBoss Application Server
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: Other
> Reporter: Adrian Brock
> Priority: Critical
> Fix For: Backlog
>
>
> I am getting singlularly fed up with people doing their own integrations
> in such a way that every project needs to depend directly on everything
> in thirdparty and every other project.
> Some people need to go on a course to learn the meaning of abstraction.
> e.g.
> The server module is an integration project. It should not be directly dependent
> on implementation details of Xerces:
> package org.jboss.webservice.metadata.wsdl;
> import org.apache.xerces.xs.XSComplexTypeDefinition;
> import org.apache.xerces.xs.XSTypeDefinition;
> import org.jboss.webservice.metadata.wsdl.WSDLConstants;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDComplexType;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDElement;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDSchema;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDSimpleType;
> import org.jboss.webservice.metadata.wsdl.xsd.XSDType;
> import javax.xml.namespace.QName;
> import java.io.File;
> import java.io.FileWriter;
> import java.io.IOException;
> import java.lang.reflect.Field;
> import java.lang.reflect.Method;
> import java.lang.reflect.Modifier;
> import java.net.URL;
> import java.util.ArrayList;
> import java.util.HashMap;
> import java.util.Iterator;
> import java.util.List;
> import java.util.Map;
> public class WSDLUtils
> {
> private String newline = System.getProperty("line.separator");
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 10 months