From: Elliotte R. H. <el...@ib...> - 2010-02-08 13:29:15
|
After checking exist out of svn and running build.sh I get a few strange errors: test-compile: [echo] Compiling with Java 1.6 from 1.6 source to 1.6 target, debug on, optimize on, deprecation off [javac] Compiling 14 source files to /Users/elharo/Projects/exist/trunk/exist/test/classes [javac] /Users/elharo/Projects/exist/trunk/exist/test/src/org/exist/performance/actions/StoreFromFile.java:45: cannot access EXistException [javac] class file for EXistException not found [javac] public class StoreFromFile extends AbstractAction { [javac] ^ [javac] /Users/elharo/Projects/exist/trunk/exist/test/src/org/exist/xmlrpc/QuerySessionTest.java:142: cannot access DBBroker [javac] class file for DBBroker not found [javac] File[] files = generator.generate(test, generateXQ); [javac] ^ [javac] /Users/elharo/Projects/exist/trunk/exist/test/src/org/exist/xmlrpc/XmlRpcTest.java:58: cannot access XmldbURI [javac] class file for XmldbURI not found [javac] private final static XmldbURI TARGET_RESOURCE = TARGET_COLLECTION.append(TestConstants.TEST_XML_URI); As near as I can tell, these classes and members are not actually missing. Any ideas? Anyone seen this before? -- Elliotte Rusty Harold el...@ib... |
From: Adam R. <ad...@ex...> - 2010-02-08 14:04:02
|
I just did a fresh checkout of trunk here (rev 11159) and ran build.sh, it all succeeded correctly :-) BUILD SUCCESSFUL Total time: 17 seconds Which JDK are you using, is it definitely a Sun one? On 8 February 2010 12:41, Elliotte Rusty Harold <el...@ib...> wrote: > After checking exist out of svn and running build.sh I get a few strange errors: > > test-compile: > [echo] Compiling with Java 1.6 from 1.6 source to 1.6 target, > debug on, optimize on, deprecation off > [javac] Compiling 14 source files to > /Users/elharo/Projects/exist/trunk/exist/test/classes > [javac] /Users/elharo/Projects/exist/trunk/exist/test/src/org/exist/performance/actions/StoreFromFile.java:45: > cannot access EXistException > [javac] class file for EXistException not found > [javac] public class StoreFromFile extends AbstractAction { > [javac] ^ > [javac] /Users/elharo/Projects/exist/trunk/exist/test/src/org/exist/xmlrpc/QuerySessionTest.java:142: > cannot access DBBroker > [javac] class file for DBBroker not found > [javac] File[] files = generator.generate(test, generateXQ); > [javac] ^ > [javac] /Users/elharo/Projects/exist/trunk/exist/test/src/org/exist/xmlrpc/XmlRpcTest.java:58: > cannot access XmldbURI > [javac] class file for XmldbURI not found > [javac] private final static XmldbURI TARGET_RESOURCE = > TARGET_COLLECTION.append(TestConstants.TEST_XML_URI); > > > As near as I can tell, these classes and members are not actually > missing. Any ideas? Anyone seen this before? > > -- > Elliotte Rusty Harold > el...@ib... > > ------------------------------------------------------------------------------ > The Planet: dedicated and managed hosting, cloud storage, colocation > Stay online with enterprise data centers and the best network in the business > Choose flexible plans and management services without long-term contracts > Personal 24x7 support from experience hosting pros just a phone call away. > http://p.sf.net/sfu/theplanet-com > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > -- Adam Retter eXist Developer { United Kingdom } ad...@ex... irc://irc.freenode.net/existdb |
From: Wolfgang M. <wol...@ex...> - 2010-02-08 14:08:11
|
> After checking exist out of svn and running build.sh I get a few strange errors: Strange, a fresh copy from svn, but it builds without errors here. Maybe you checked out a revision which temporarily broke the build. The xmlrpc tests were modified on the weekend. Wolfgang |
From: Elliotte R. H. <el...@ib...> - 2010-02-08 18:35:29
|
On Mon, Feb 8, 2010 at 8:41 AM, Adam Retter <ad...@ex...> wrote: > I just did a fresh checkout of trunk here (rev 11159) and ran > build.sh, it all succeeded correctly :-) > > BUILD SUCCESSFUL > Total time: 17 seconds > > Which JDK are you using, is it definitely a Sun one? > It's the apple port of Sun's JDK. I synced this morning. Nor worth a lot of effort if no one else sees the problem. -- Elliotte Rusty Harold el...@ib... |
From: Joe W. <jo...@gm...> - 2010-02-08 19:03:42
|
>> I just did a fresh checkout of trunk here (rev 11159) and ran >> build.sh, it all succeeded correctly :-) >> >> BUILD SUCCESSFUL >> Total time: 17 seconds >> >> Which JDK are you using, is it definitely a Sun one? > > It's the apple port of Sun's JDK. I synced this morning. Nor worth a > lot of effort if no one else sees the problem. With several commits this morning, it'll help folks try to reproduce the problem if you could report the exact eXist revision number. Joe |
From: Dannes W. <da...@ex...> - 2010-02-08 19:06:29
|
Hi, On Mon, Feb 8, 2010 at 8:03 PM, Joe Wicentowski <jo...@gm...> wrote: > With several commits this morning, it'll help folks try to reproduce > the problem if you could report the exact eXist revision number. > > I have been applying patches, compiling and testting (junit, xqts) all day, and have seen no issues...... I run the same configuration (macosx, 64 bit java) cheers Dannes -- eXist-db Native XML Database - http://exist-db.org Join us on linked-in: http://www.linkedin.com/groups?gid=35624 |
From: Elliotte R. H. <el...@ib...> - 2010-02-09 11:09:56
|
Whatever was going on, it's fixed now. One more svn update followed by an "ant clean" and it all built. Likely just an old .jar or .class file in an inconvenient place. Sorry for the noise. -- Elliotte Rusty Harold el...@ib... |