|
From: Michael B. <mic...@gm...> - 2008-08-26 15:42:54
|
Hi, Any idea when beta 6 will be released? (in jira it is set for last week) How stable/usable is the trunk? (currently (rev 298) the build fails) Or would you recommend using beta 5? (but no JSR311 api 0.9 then) Michael |
|
From: Bill B. <bb...@re...> - 2008-08-27 11:42:04
|
Michael Brackx wrote: > Hi, > > Any idea when beta 6 will be released? > (in jira it is set for last week) > I am slating a beta 6 release for next week to go in conjunction with my next dzone article. > How stable/usable is the trunk? > (currently (rev 298) the build fails) > Whoah! the build shouldn't fail and it should be stable...I'll get this fixed in about a couple of hours. Maybe I forgot to check something in... FYI, we're usually good about having a stable trunk. > Or would you recommend using beta 5? > (but no JSR311 api 0.9 then) > We're up to 0.10 of spec revision in trunk. Use trunk. I'll get it building sometime before 11am EST today. -- Bill Burke JBoss, a division of Red Hat http://bill.burkecentral.com |
|
From: Bill B. <bb...@re...> - 2008-08-27 11:50:42
|
Bill Burke wrote: > > > Michael Brackx wrote: >> Hi, >> >> Any idea when beta 6 will be released? >> (in jira it is set for last week) >> > > I am slating a beta 6 release for next week to go in conjunction with my > next dzone article. > >> How stable/usable is the trunk? >> (currently (rev 298) the build fails) >> > > Whoah! the build shouldn't fail and it should be stable...I'll get this > fixed in about a couple of hours. Maybe I forgot to check something > in... FYI, we're usually good about having a stable trunk. > Actually, it builds fine for me. Did you check out full trunk? If so, then no, it will not build as full trunk has a lot of old code. Check out as follows: svn co https://resteasy.svn.sourceforge.net/svnroot/resteasy/trunk/jaxrs resteasy-jaxrs Notice the *jaxrs* at the end. Bill -- Bill Burke JBoss, a division of Red Hat http://bill.burkecentral.com |
|
From: Michael B. <mic...@gm...> - 2008-08-27 12:21:19
|
Hi, > Actually, it builds fine for me. Did you check out full trunk? If so, > then no, it will not build as full trunk has a lot of old code. > > Check out as follows: > > svn co https://resteasy.svn.sourceforge.net/svnroot/resteasy/trunk/jaxrsresteasy-jaxrs > Yes, that is the trunk i was using. Perhaps i should be more specific: i can build, but the tests are failing. mvn -Dmaven.test.skip=true package => BUILD SUCCESSFUL mvn package => BUILD FAILURE After "fixing my environment" (e.g. not having anything run on port 8081) i now have one failure: org.jboss.resteasy.test.providers.yaml.TestYamlProvider ------------------------------------------------------------------------------- Test set: org.jboss.resteasy.test.providers.yaml.TestYamlProvider ------------------------------------------------------------------------------- Tests run: 3, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.125 sec <<< FAILURE! testGet(org.jboss.resteasy.test.providers.yaml.TestYamlProvider) Time elapsed: 0.015 sec <<< FAILURE! junit.framework.AssertionFailedError: --- !org.jboss.resteasy.test.providers.yaml.MyObject date: !java.util.Date "123456789" nested: !org.jboss.resteasy.test.providers.yaml.MyNestedObject moreText: This is some more sample text someText: This is some sample text expected:<-797533417> but was:<1512627500> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:277) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:195) at org.jboss.resteasy.test.providers.yaml.TestYamlProvider.testGet(TestYamlProvider.java:47) 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:585) at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99) at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81) at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75) at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45) at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71) at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35) at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:62) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) at org.apache.maven.surefire.Surefire.run(Surefire.java:177) 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:585) at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:334) at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:980) Michael Brackx |
|
From: Bill B. <bb...@re...> - 2008-08-27 13:38:45
|
Ok, try it now. The test assumes that String.hashCode() returns the same value on all JDKs. I'm not sure you can rely on that... Michael Brackx wrote: > Hi, > > > Actually, it builds fine for me. Did you check out full trunk? If > so, then no, it will not build as full trunk has a lot of old code. > > Check out as follows: > > svn co > https://resteasy.svn.sourceforge.net/svnroot/resteasy/trunk/jaxrs > resteasy-jaxrs > > > Yes, that is the trunk i was using. > Perhaps i should be more specific: i can build, but the tests are failing. > mvn -Dmaven.test.skip=true package => BUILD SUCCESSFUL > mvn package => BUILD FAILURE > > After "fixing my environment" (e.g. not having anything run on port > 8081) i now have one failure: > org.jboss.resteasy.test.providers.yaml.TestYamlProvider > > ------------------------------------------------------------------------------- > Test set: org.jboss.resteasy.test.providers.yaml.TestYamlProvider > ------------------------------------------------------------------------------- > Tests run: 3, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.125 > sec <<< FAILURE! > testGet(org.jboss.resteasy.test.providers.yaml.TestYamlProvider) Time > elapsed: 0.015 sec <<< FAILURE! > junit.framework.AssertionFailedError: --- > !org.jboss.resteasy.test.providers.yaml.MyObject > date: !java.util.Date "123456789" > nested: !org.jboss.resteasy.test.providers.yaml.MyNestedObject > moreText: This is some more sample text > someText: This is some sample text > expected:<-797533417> but was:<1512627500> > at junit.framework.Assert.fail(Assert.java:47) > at junit.framework.Assert.failNotEquals(Assert.java:277) > at junit.framework.Assert.assertEquals(Assert.java:64) > at junit.framework.Assert.assertEquals(Assert.java:195) > at > org.jboss.resteasy.test.providers.yaml.TestYamlProvider.testGet(TestYamlProvider.java:47) > 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:585) > at > org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99) > at > org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81) > at > org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) > at > org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75) > at > org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45) > at > org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71) > at > org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35) > at > org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) > at > org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) > at > org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) > at > org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:62) > at > org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) > at > org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) > at org.apache.maven.surefire.Surefire.run(Surefire.java:177) > 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:585) > at > org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:334) > at > org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:980) > > > > Michael Brackx -- Bill Burke JBoss, a division of Red Hat http://bill.burkecentral.com |