Can the
resteasy-int/test pom be run in QE?
Steps:
1. startup jboss
2. cd resteasy-int/test
3. mvn install
Ales Justin wrote:
I saw some RestEasy-int commit that should probably be applied to
this
branch as well -- if not yet done.
----
Message: 5
Date: Thu, 22 Jul 2010 05:27:53 -0400
From: jboss-cvs-commits(a)lists.jboss.org
<mailto:jboss-cvs-commits@lists.jboss.org>
Subject: [jboss-cvs] JBossAS SVN: r107017 -
trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers.
To: jboss-cvs-commits(a)lists.jboss.org
<mailto:jboss-cvs-commits@lists.jboss.org>
Message-ID:
<201007220927.o6M9RrEL015390(a)svn01.web.mwc.hst.phx2.redhat.com
<mailto:201007220927.o6M9RrEL015390@svn01.web.mwc.hst.phx2.redhat.com>>
Content-Type: text/plain; charset=UTF-8
Author: richard.opalka(a)jboss.com <mailto:richard.opalka@jboss.com>
Date: 2010-07-22 05:27:52 -0400 (Thu, 22 Jul 2010)
New Revision: 107017
Modified:
trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java
Log:
[JBAS-8234] fixing CCE
Modified:
trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java
===================================================================
---
trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java
2010-07-22 09:02:39 UTC (rev 107016)
+++
trunk/resteasy-int/jar/src/main/java/org/jboss/resteasy/integration/deployers/ResteasyIntegrationDeployer.java
2010-07-22 09:27:52 UTC (rev 107017)
@@ -146,7 +146,8 @@
{
Thread.currentThread().getContextClassLoader().loadClass(CDI_INJECTOR_FACTORY_CLASS);
// don't set this param if CDI is not in classpath
- if (((VFSDeploymentUnit) du).getMetaDataFile("beans.xml") != null)
+ final boolean isVFSDU = du instanceof VFSDeploymentUnit;
+ if (isVFSDU && ((VFSDeploymentUnit)
du).getMetaDataFile("beans.xml") != null)
{
log.debug("***** Found CDI, adding injector factory class");
setContextParameter(webdata, "resteasy.injector.factory",
CDI_INJECTOR_FACTORY_CLASS);
On Jul 22, 2010, at 4:32 PM, Brian Stansberry wrote:
> FYI, last night Jason created a branch for the M4 release.[1] Similar to
> the M2 release, the final QE tasks for the release will be done on that
> branch, with the expectation that the final M4 tag will be essentially
> the same as the root of the branch.
>
> The M4 release will probably come out early next week.
>
> AS trunk is now open for normal development work toward AS 6.0 final.
>
> [1]
https://svn.jboss.org/repos/jbossas/branches/6.0.0.20100721-M4
> --
> Brian Stansberry
> Lead, AS Clustering
> JBoss by Red Hat
> _______________________________________________
> jboss-development mailing list
> jboss-development(a)lists.jboss.org
> <mailto:jboss-development@lists.jboss.org>
>
https://lists.jboss.org/mailman/listinfo/jboss-development
------------------------------------------------------------------------
_______________________________________________
jboss-development mailing list
jboss-development(a)lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-development