You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by an...@apache.org on 2010/10/06 00:05:20 UTC

svn commit: r1004827 - in /openejb/trunk/openejb3: ./ container/openejb-activemq4/ container/openejb-core/ container/openejb-jee/ container/openejb-osgi-core/ container/openejb-osgi/ examples/jpa-hibernate/ examples/webapps/jsf/ server/openejb-axis/ se...

Author: andygumbrecht
Date: Tue Oct  5 22:05:19 2010
New Revision: 1004827

URL: http://svn.apache.org/viewvc?rev=1004827&view=rev
Log:
Fixed several more version conflicts.
OSGI project names.

The StatelessPoolStatsTest may fail on testAging and testAgingWithReplacement - Still trying to work out where these are going pear shaped?

Modified:
    openejb/trunk/openejb3/container/openejb-activemq4/pom.xml
    openejb/trunk/openejb3/container/openejb-core/pom.xml
    openejb/trunk/openejb3/container/openejb-jee/pom.xml
    openejb/trunk/openejb3/container/openejb-osgi-core/pom.xml
    openejb/trunk/openejb3/container/openejb-osgi/pom.xml
    openejb/trunk/openejb3/examples/jpa-hibernate/pom.xml
    openejb/trunk/openejb3/examples/webapps/jsf/pom.xml
    openejb/trunk/openejb3/pom.xml
    openejb/trunk/openejb3/server/openejb-axis/pom.xml
    openejb/trunk/openejb3/server/openejb-axis2/pom.xml
    openejb/trunk/openejb3/server/openejb-webadmin/pom.xml
    openejb/trunk/openejb3/server/openejb-webservices/pom.xml

Modified: openejb/trunk/openejb3/container/openejb-activemq4/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-activemq4/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-activemq4/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-activemq4/pom.xml Tue Oct  5 22:05:19 2010
@@ -174,6 +174,16 @@
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-core</artifactId>
       <version>4.1.1</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>backport-util-concurrent</artifactId>
+          <groupId>backport-util-concurrent</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <artifactId>backport-util-concurrent</artifactId>
+      <groupId>backport-util-concurrent</groupId>
     </dependency>
 		<!-- End ActiveMQ -->
     <dependency>

Modified: openejb/trunk/openejb3/container/openejb-core/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-core/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-core/pom.xml Tue Oct  5 22:05:19 2010
@@ -752,7 +752,7 @@
                       <groupId>commons-collections</groupId>
                       <artifactId>commons-collections</artifactId>
                       <overWrite>true</overWrite>
-                      <version>2.1</version>
+                      <version>3.2.1</version>
                       <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory>
                     </artifactItem>
                                 <!-- commons-beanutils -->
@@ -776,7 +776,7 @@
                       <groupId>xml-apis</groupId>
                       <artifactId>xml-apis</artifactId>
                       <overWrite>true</overWrite>
-                      <version>1.0.b2</version>
+                      <version>1.3.04</version>
                       <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory>
                     </artifactItem>
                   </artifactItems>

Modified: openejb/trunk/openejb3/container/openejb-jee/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-jee/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-jee/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-jee/pom.xml Tue Oct  5 22:05:19 2010
@@ -88,7 +88,7 @@
       <version>4.0.8</version>
       <exclusions>
         <exclusion>
-          <groupId>stax</groupId>
+          <groupId>javax.xml.stream</groupId>
           <artifactId>stax-api</artifactId>
         </exclusion>
       </exclusions>

Modified: openejb/trunk/openejb3/container/openejb-osgi-core/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-osgi-core/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-osgi-core/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-osgi-core/pom.xml Tue Oct  5 22:05:19 2010
@@ -27,7 +27,7 @@
   <modelVersion>4.0.0</modelVersion>
   <artifactId>openejb-osgi-core</artifactId>
   <packaging>bundle</packaging>
-  <name>OpenEJB :: Container :: Core :: OSGi</name>
+  <name>OpenEJB :: Container :: OSGi :: Core</name>
   <properties>
     <openejb.osgi.export>
         org.apache.openejb.osgi.core;version=${openejb.osgi.export.version}

Modified: openejb/trunk/openejb3/container/openejb-osgi/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-osgi/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/container/openejb-osgi/pom.xml (original)
+++ openejb/trunk/openejb3/container/openejb-osgi/pom.xml Tue Oct  5 22:05:19 2010
@@ -27,7 +27,7 @@
   <modelVersion>4.0.0</modelVersion>
   <artifactId>openejb-core-osgi</artifactId>
   <packaging>bundle</packaging>
-  <name>OpenEJB :: Container :: Core :: OSGi</name>
+  <name>OpenEJB :: Container :: OSGi</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.openejb</groupId>

Modified: openejb/trunk/openejb3/examples/jpa-hibernate/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/examples/jpa-hibernate/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/examples/jpa-hibernate/pom.xml (original)
+++ openejb/trunk/openejb3/examples/jpa-hibernate/pom.xml Tue Oct  5 22:05:19 2010
@@ -125,6 +125,12 @@
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
       <version>1.6.1</version>
+      <exclusions>
+        <exclusion>
+          <artifactId>slf4j-api</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>log4j</groupId>

Modified: openejb/trunk/openejb3/examples/webapps/jsf/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/examples/webapps/jsf/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/examples/webapps/jsf/pom.xml (original)
+++ openejb/trunk/openejb3/examples/webapps/jsf/pom.xml Tue Oct  5 22:05:19 2010
@@ -89,6 +89,10 @@
           <groupId>javax.servlet</groupId>
           <artifactId>jstl</artifactId>
         </exclusion>
+        <exclusion>
+          <artifactId>xmlParserAPIs</artifactId>
+          <groupId>xml-apis</groupId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>

Modified: openejb/trunk/openejb3/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/pom.xml (original)
+++ openejb/trunk/openejb3/pom.xml Tue Oct  5 22:05:19 2010
@@ -727,6 +727,16 @@
         </exclusions>
       </dependency>
       <dependency>
+        <groupId>xalan</groupId>
+        <artifactId>xalan</artifactId>
+        <version>2.7.1</version>
+      </dependency>
+      <dependency>
+        <groupId>javax.xml.stream</groupId>
+        <artifactId>stax-api</artifactId>
+        <version>1.0-2</version>
+      </dependency>
+      <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-beans</artifactId>
         <version>${org.springframework.version}</version>
@@ -964,13 +974,38 @@
       <dependency>
         <groupId>xml-apis</groupId>
         <artifactId>xml-apis</artifactId>
-        <version>2.0.2</version>
+        <version>1.3.04</version>
         <scope>test</scope>
       </dependency>
       <dependency>
         <groupId>org.apache.neethi</groupId>
         <artifactId>neethi</artifactId>
         <version>2.0.4</version>
+        <exclusions>
+          <exclusion>
+            <groupId>org.apache.ws.commons.axiom</groupId>
+            <artifactId>axiom-impl</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>org.apache.ws.commons.axiom</groupId>
+            <artifactId>axiom-api</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+      <dependency>
+        <artifactId>backport-util-concurrent</artifactId>
+        <groupId>backport-util-concurrent</groupId>
+        <version>3.1</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ws.commons.axiom</groupId>
+        <artifactId>axiom-api</artifactId>
+        <version>1.2.9</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ws.commons.axiom</groupId>
+        <artifactId>axiom-impl</artifactId>
+        <version>1.2.9</version>
       </dependency>
       <dependency>
         <groupId>xerces</groupId>
@@ -998,6 +1033,10 @@
         <version>1.6.1</version>
         <exclusions>
           <exclusion>
+            <artifactId>slf4j-api</artifactId>
+            <groupId>org.slf4j</groupId>
+          </exclusion>
+          <exclusion>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
           </exclusion>
@@ -1014,6 +1053,26 @@
         <version>3.2.1</version>
       </dependency>
       <dependency>
+        <groupId>commons-codec</groupId>
+        <artifactId>commons-codec</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-fileupload</groupId>
+        <artifactId>commons-fileupload</artifactId>
+        <version>1.2.2</version>
+      </dependency>
+      <dependency>
+        <groupId>regexp</groupId>
+        <artifactId>regexp</artifactId>
+        <version>1.3</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-discovery</groupId>
+        <artifactId>commons-discovery</artifactId>
+        <version>0.4</version>
+      </dependency>
+      <dependency>
         <groupId>org.apache.openwebbeans</groupId>
         <artifactId>openwebbeans-impl</artifactId>
         <version>${org.apache.openwebbeans.version}</version>
@@ -1115,7 +1174,17 @@
       <dependency>
         <artifactId>commons-lang</artifactId>
         <groupId>commons-lang</groupId>
-        <version>2.1</version>
+        <version>2.5</version>
+      </dependency>
+      <dependency>
+        <groupId>commons-io</groupId>
+        <artifactId>commons-io</artifactId>
+        <version>1.4</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.ws.commons.schema</groupId>
+        <artifactId>XmlSchema</artifactId>
+        <version>1.4.6</version>
       </dependency>
     </dependencies>
   </dependencyManagement>

Modified: openejb/trunk/openejb3/server/openejb-axis/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/server/openejb-axis/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/server/openejb-axis/pom.xml (original)
+++ openejb/trunk/openejb3/server/openejb-axis/pom.xml Tue Oct  5 22:05:19 2010
@@ -70,7 +70,6 @@
     <dependency>
       <groupId>org.apache.ws.commons.schema</groupId>
       <artifactId>XmlSchema</artifactId>
-      <version>1.3.1</version>
     </dependency>
   </dependencies>
 </project>

Modified: openejb/trunk/openejb3/server/openejb-axis2/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/server/openejb-axis2/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/server/openejb-axis2/pom.xml (original)
+++ openejb/trunk/openejb3/server/openejb-axis2/pom.xml Tue Oct  5 22:05:19 2010
@@ -83,32 +83,18 @@
     <dependency>
       <groupId>org.apache.ws.commons.axiom</groupId>
       <artifactId>axiom-api</artifactId>
-      <version>1.2.9</version>
     </dependency>
     <dependency>
       <groupId>org.apache.ws.commons.axiom</groupId>
       <artifactId>axiom-impl</artifactId>
-      <version>1.2.9</version>
     </dependency>
     <dependency>
       <groupId>org.apache.ws.commons.schema</groupId>
       <artifactId>XmlSchema</artifactId>
-      <version>1.4.6</version>
     </dependency>
     <dependency>
       <groupId>org.apache.neethi</groupId>
       <artifactId>neethi</artifactId>
-      <version>2.0.4</version>
-      <exclusions>
-        <exclusion>
-          <groupId>org.apache.ws.commons.axiom</groupId>
-          <artifactId>axiom-impl</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>org.apache.ws.commons.axiom</groupId>
-          <artifactId>axiom-api</artifactId>
-        </exclusion>
-      </exclusions>
     </dependency>
     <dependency>
       <groupId>commons-httpclient</groupId>
@@ -118,7 +104,6 @@
     <dependency>
       <groupId>commons-codec</groupId>
       <artifactId>commons-codec</artifactId>
-      <version>1.4</version>
     </dependency>
     <dependency>
       <groupId>org.apache.xmlbeans</groupId>

Modified: openejb/trunk/openejb3/server/openejb-webadmin/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/server/openejb-webadmin/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/server/openejb-webadmin/pom.xml (original)
+++ openejb/trunk/openejb3/server/openejb-webadmin/pom.xml Tue Oct  5 22:05:19 2010
@@ -106,12 +106,10 @@
     <dependency>
       <groupId>commons-fileupload</groupId>
       <artifactId>commons-fileupload</artifactId>
-      <version>1.2</version>
     </dependency>
     <dependency>
       <groupId>regexp</groupId>
       <artifactId>regexp</artifactId>
-      <version>1.3</version>
     </dependency>
     <dependency>
       <groupId>idb</groupId>

Modified: openejb/trunk/openejb3/server/openejb-webservices/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/server/openejb-webservices/pom.xml?rev=1004827&r1=1004826&r2=1004827&view=diff
==============================================================================
--- openejb/trunk/openejb3/server/openejb-webservices/pom.xml (original)
+++ openejb/trunk/openejb3/server/openejb-webservices/pom.xml Tue Oct  5 22:05:19 2010
@@ -76,7 +76,7 @@
     <dependency>
       <groupId>com.sun.xml.messaging.saaj</groupId>
       <artifactId>saaj-impl</artifactId>
-      <version>1.3</version>
+      <version>1.3.2</version>
       <scope>test</scope>
       <exclusions>
         <exclusion>



Re: Stax deps (svn commit: r1004827)

Posted by Andy <an...@orprovision.com>.
  On 12.10.2010 17:12, Thiago Veronezi wrote:
> Hi Andy,
> I see the following (but it runs fine on eclipse - junit)...
>
> -------------------------------------------------------------------------------
> Test set: org.apache.openejb.core.stateless.StatelessPoolStatsTest
> -------------------------------------------------------------------------------
> Tests run: 11, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.973 sec
> <<<  FAILURE!
> testFlushingWithReplacement(org.apache.openejb.core.stateless.StatelessPoolStatsTest)
>   Time elapsed: 0.085 sec<<<  FAILURE!
> junit.framework.AssertionFailedError: Replaced expected:<8>  but was:<7>
> at junit.framework.Assert.fail(Assert.java:47)
> at junit.framework.Assert.failNotEquals(Assert.java:283)
> at junit.framework.Assert.assertEquals(Assert.java:64)
> at
> org.apache.openejb.core.stateless.StatelessPoolStatsTest.assertAttribute(StatelessPoolStatsTest.java:537)
> at
> org.apache.openejb.core.stateless.StatelessPoolStatsTest.testFlushingWithReplacement(StatelessPoolStatsTest.java:297)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at junit.framework.TestCase.runTest(TestCase.java:168)
> at junit.framework.TestCase.runBare(TestCase.java:134)
> at junit.framework.TestResult$1.protect(TestResult.java:110)
> at junit.framework.TestResult.runProtected(TestResult.java:128)
> at junit.framework.TestResult.run(TestResult.java:113)
> at junit.framework.TestCase.run(TestCase.java:124)
> at junit.framework.TestSuite.runTest(TestSuite.java:232)
> at junit.framework.TestSuite.run(TestSuite.java:227)
> at
> org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
> at
> org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59)
> at
> org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:120)
> at
> org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:145)
> at org.apache.maven.surefire.Surefire.run(Surefire.java:104)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at
> org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:290)
> at
> org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1017)
>
>
> env: Win7, jdk1.6.0_18
>
> []s,
> Thiago
>
>
> On Thu, Oct 7, 2010 at 1:44 AM, Andy<an...@orprovision.com>  wrote:
>
>>   On 07.10.2010 00:57, David Blevins wrote:
>>
>>> On Oct 5, 2010, at 3:05 PM, andygumbrecht@apache.org wrote:
>>>
>>>   +<dependency>
>>>> +<groupId>javax.xml.stream</groupId>
>>>> +<artifactId>stax-api</artifactId>
>>>> +<version>1.0-2</version>
>>>> +</dependency>
>>>>
>>> Think we might have this one in the javaee-api jar already.  By convention
>>> we tend to avoid the Sun/Oracle javax.* set of binaries for licensing
>>> reasons.  I think there's an ASL 2.0 version of that API somewhere if it's
>>> not already in the javaee-api jar.
>>>
>>> Regardless, great having you hammer on all the deps.  Usually I'm stuck
>>> with that job :)
>>>
>>>
>>> -David
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>   OK, will sort it today - It's a work in progress, but hope you've seen my
>> previous mails on my method of attack. My main focus is weeding out
>> conflicting libraries, and  stax is just one of the several hidden
>> duplicates pulled in as child deps (I guess I just picked the wrong one to
>> stick with). Some of the tests are actually or have been running against
>> different api versions than is pulled into the final assembly.
>>
>> Btw. Is anyone else seeing the StatelessPoolStatsTest fail on testAging and
>> testAgingWithReplacement in trunk?
>>
>> Andy.
>>
>>
Thanks Thiago,

It's enough to suggest that something is not synchronizing as expected 
so I'm going to dig a little deeper and try and find out what. It's a 
timing issue so bound to be tough to find :-(


Re: Stax deps (svn commit: r1004827)

Posted by Thiago Veronezi <th...@veronezi.org>.
Hi Andy,
I see the following (but it runs fine on eclipse - junit)...

-------------------------------------------------------------------------------
Test set: org.apache.openejb.core.stateless.StatelessPoolStatsTest
-------------------------------------------------------------------------------
Tests run: 11, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.973 sec
<<< FAILURE!
testFlushingWithReplacement(org.apache.openejb.core.stateless.StatelessPoolStatsTest)
 Time elapsed: 0.085 sec  <<< FAILURE!
junit.framework.AssertionFailedError: Replaced expected:<8> but was:<7>
at junit.framework.Assert.fail(Assert.java:47)
at junit.framework.Assert.failNotEquals(Assert.java:283)
at junit.framework.Assert.assertEquals(Assert.java:64)
at
org.apache.openejb.core.stateless.StatelessPoolStatsTest.assertAttribute(StatelessPoolStatsTest.java:537)
at
org.apache.openejb.core.stateless.StatelessPoolStatsTest.testFlushingWithReplacement(StatelessPoolStatsTest.java:297)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at junit.framework.TestCase.runTest(TestCase.java:168)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at
org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at
org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59)
at
org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:120)
at
org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:145)
at org.apache.maven.surefire.Surefire.run(Surefire.java:104)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:290)
at
org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1017)


env: Win7, jdk1.6.0_18

[]s,
Thiago


On Thu, Oct 7, 2010 at 1:44 AM, Andy <an...@orprovision.com> wrote:

>  On 07.10.2010 00:57, David Blevins wrote:
>
>> On Oct 5, 2010, at 3:05 PM, andygumbrecht@apache.org wrote:
>>
>>  +<dependency>
>>> +<groupId>javax.xml.stream</groupId>
>>> +<artifactId>stax-api</artifactId>
>>> +<version>1.0-2</version>
>>> +</dependency>
>>>
>> Think we might have this one in the javaee-api jar already.  By convention
>> we tend to avoid the Sun/Oracle javax.* set of binaries for licensing
>> reasons.  I think there's an ASL 2.0 version of that API somewhere if it's
>> not already in the javaee-api jar.
>>
>> Regardless, great having you hammer on all the deps.  Usually I'm stuck
>> with that job :)
>>
>>
>> -David
>>
>>
>>
>>
>>
>>
>>
>>
>>  OK, will sort it today - It's a work in progress, but hope you've seen my
> previous mails on my method of attack. My main focus is weeding out
> conflicting libraries, and  stax is just one of the several hidden
> duplicates pulled in as child deps (I guess I just picked the wrong one to
> stick with). Some of the tests are actually or have been running against
> different api versions than is pulled into the final assembly.
>
> Btw. Is anyone else seeing the StatelessPoolStatsTest fail on testAging and
> testAgingWithReplacement in trunk?
>
> Andy.
>
>

Re: Stax deps (svn commit: r1004827)

Posted by Andy <an...@orprovision.com>.
  On 07.10.2010 00:57, David Blevins wrote:
> On Oct 5, 2010, at 3:05 PM, andygumbrecht@apache.org wrote:
>
>> +<dependency>
>> +<groupId>javax.xml.stream</groupId>
>> +<artifactId>stax-api</artifactId>
>> +<version>1.0-2</version>
>> +</dependency>
> Think we might have this one in the javaee-api jar already.  By convention we tend to avoid the Sun/Oracle javax.* set of binaries for licensing reasons.  I think there's an ASL 2.0 version of that API somewhere if it's not already in the javaee-api jar.
>
> Regardless, great having you hammer on all the deps.  Usually I'm stuck with that job :)
>
>
> -David
>
>
>
>
>
>
>
>
OK, will sort it today - It's a work in progress, but hope you've seen 
my previous mails on my method of attack. My main focus is weeding out 
conflicting libraries, and  stax is just one of the several hidden 
duplicates pulled in as child deps (I guess I just picked the wrong one 
to stick with). Some of the tests are actually or have been running 
against different api versions than is pulled into the final assembly.

Btw. Is anyone else seeing the StatelessPoolStatsTest fail on testAging 
and testAgingWithReplacement in trunk?

Andy.


Stax deps (svn commit: r1004827)

Posted by David Blevins <da...@visi.com>.
On Oct 5, 2010, at 3:05 PM, andygumbrecht@apache.org wrote:

> +      <dependency>
> +        <groupId>javax.xml.stream</groupId>
> +        <artifactId>stax-api</artifactId>
> +        <version>1.0-2</version>
> +      </dependency>

Think we might have this one in the javaee-api jar already.  By convention we tend to avoid the Sun/Oracle javax.* set of binaries for licensing reasons.  I think there's an ASL 2.0 version of that API somewhere if it's not already in the javaee-api jar.

Regardless, great having you hammer on all the deps.  Usually I'm stuck with that job :)


-David