[Lift] Re: Help on "Build from source"
David: I build again on windows. and fond there are also some error. I log I've fixed it . and log my modify follow: # On branch master # Changed but not updated: # (use "git add ..." to update what will be committed) # (use "git checkout -- ..." to discard changes in working directory) # # modified: lift-actor/src/main/scala/net/liftweb/actor/LiftActor.scala # modified: lift-jta/src/main/scala/net/liftweb/transaction/hibernate/LiftTransactionManagerLookup.scala # modified: lift-mapper/src/main/scala/net/liftweb/mapper/MappedBinary.scala # modified: lift-osgi/src/main/scala/net/liftweb/osgi/internal/Activator.scala # modified: lift-record/src/main/scala/net/liftweb/record/DBMetaRecord.scala # modified: lift-record/src/main/scala/net/liftweb/record/Field.scala # modified: lift-record/src/main/scala/net/liftweb/record/MetaRecord.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/BinaryField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/BooleanField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/DateTimeField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/DecimalField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/DoubleField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/EmailField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/EnumField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/IntField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/LocaleField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/LongField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/PasswordField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/PostalCodeField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/StringField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/TextareaField.scala # modified: lift-record/src/main/scala/net/liftweb/record/field/TimeZoneField.scala # modified: lift-textile/src/main/scala/net/liftweb/textile/TextileParser.scala # modified: lift-util/src/main/scala/net/liftweb/util/ConcurrentLock.scala # modified: lift-util/src/main/scala/net/liftweb/util/CurrencyZone.scala # modified: lift-util/src/main/scala/net/liftweb/util/IOHelpers.scala # modified: lift-util/src/main/scala/net/liftweb/util/Mailer.scala # modified: lift-util/src/main/scala/net/liftweb/util/PCDataMarkupParser.scala # modified: lift-util/src/main/scala/net/liftweb/util/Props.scala # modified: lift-util/src/main/scala/net/liftweb/util/SoftReferenceCache.scala # modified: lift-util/src/main/scala/net/liftweb/util/TemplateCache.scala # modified: lift-util/src/test/scala/net/liftweb/util/ActorPingUnit.scala # modified: lift-util/src/test/scala/net/liftweb/util/EnumWithDescriptionSpec.scala # modified: lift-util/src/test/scala/net/liftweb/util/XmlParsingSpecs.scala # modified: lift/src/main/scala/net/liftweb/http/LiftRules.scala # modified: lift/src/main/scala/net/liftweb/http/LiftServlet.scala # modified: lift/src/main/scala/net/liftweb/http/LiftSession.scala # modified: lift/src/main/scala/net/liftweb/http/Req.scala # modified: lift/src/main/scala/net/liftweb/http/S.scala # modified: sites/JPADemo/JPADemo-spa/src/main/scala/net/liftweb/jpademo/model/AU.scala # modified: sites/JPADemo/JPADemo-spa/src/main/scala/net/liftweb/jpademo/model/Author.scala # modified: sites/JPADemo/JPADemo-spa/src/main/scala/net/liftweb/jpademo/model/Book.scala # modified: sites/JPADemo/JPADemo-spa/src/main/scala/net/liftweb/jpademo/model/CurrencyUserType.scala # modified: sites/JPADemo/JPADemo-spa/src/main/scala/net/liftweb/jpademo/model/CurrencyZone.scala # modified: sites/JPADemo/JPADemo-spa/src/main/scala/net/liftweb/jpademo/model/EnumvType.scala # modified: sites/JPADemo/JPADemo-web/src/main/scala/net/liftweb/jpademo/snippet/Books.scala # modified: sites/JPADemo/JPADemo-web/src/main/webapp/css/datePicker.css # modified: sites/JPADemo/JPADemo-web/src/main/webapp/scripts/jquery.datePicker.js # modified: sites/JPADemo/JPADemo-web/src/test/scala/RunWebApp.scala # modified: sites/example/src/main/scala/net/liftweb/example/snippet/Ajax.scala # Untracked files: # (use "git add ..." to include in what will be committed) Nile Black On Thu, Jul 30, 2009 at 9:11 PM, David Pollak wrote: > Does it also build on your Windows box? It should now... and if it doesn't > I didn't nail all the _root_ causes. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To pos
[Lift] Re: Help on "Build from source"
On Wed, Jul 29, 2009 at 10:22 PM, nile black wrote: > Thanks everyone for your help and replies! > > It builds successful in my new clean colinux vm. Does it also build on your Windows box? It should now... and if it doesn't I didn't nail all the _root_ causes. > > > Nile Black > > > > On Wed, Jul 29, 2009 at 10:11 PM, Timothy Perrett > wrote: > >> >> FYI, David MacIver recently wrote a blog about exactly how package >> imports work :-) >> >> http://www.drmaciver.com/2009/07/how-packages-work-in-scala/ >> >> Its interesting reading so perhaps that will help Nile. >> >> Cheers, Tim >> >> On Jul 29, 3:06 pm, David Pollak >> wrote: >> > Nile, >> > >> > Scala imports are relative unless the path of the import is prefixed by >> > "_root_". This behavior is the subject of fierce discussion on the >> Scala >> > list. What does relative mean? It's like this: >> > >> > import net.liftweb._ >> > import http._ // imports net.liftweb.http._ >> > >> > The problem is that if you have a JAR with some net.java.blah package in >> it, >> > the Scala compiler will look to resolve java.concurrent._ as >> > net.java.concurrent._ >> > >> > We've generally tried to be explicit about using _root_ for all our >> imports, >> > etc., but some lazy good for nothing Lift committers (I'm thinking about >> > me), don't always follow the rule... and this has led to the pain you >> are >> > experiencing. >> > >> > So, I don't know how Maven uses your environment variables, but that's >> the >> > thing that's poking at the issue. >> > >> > I did some work to make the import paths in Lift absolute. I'll spend >> time >> > today finishing the cleanup. >> > >> > Thanks, >> > >> > David >> > >> > >> > >> > >> > >> > On Tue, Jul 28, 2009 at 10:52 PM, nile black >> wrote: >> > > Hi,Everyone >> > >> > > i try to fix the problem >> > > eg: >> > > [WARNING] >> D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.sc >> ala:16: >> > > error: value util is not a member of package net.java >> > > [WARNING] import java.util.concurrent.locks._ >> > >> > > i use >> > > import _root_.java.util.concurrent.locks._ >> > > instead of >> > > import java.util.concurrent.locks._ >> > >> > > the error disappear! it works. >> > >> > > but my question is what's difference between with or without _root_??? >> > >> > > Nile Black >> > >> > > On Wed, Jul 29, 2009 at 1:07 PM, nile black >> wrote: >> > >> > >> [WARNING] >> > >> >> D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.sc >> ala:16: >> > >> error: value util is not a member of package net.java >> > >> [WARNING] import java.util.concurrent.locks._ >> > >> > -- >> > Lift, the simply functional web frameworkhttp://liftweb.net >> > Beginning Scalahttp://www.apress.com/book/view/1430219890 >> > Follow me:http://twitter.com/dpp >> > Git some:http://github.com/dpp >> >> > > > > -- Lift, the simply functional web framework http://liftweb.net Beginning Scala http://www.apress.com/book/view/1430219890 Follow me: http://twitter.com/dpp Git some: http://github.com/dpp --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~--~~~~--~~--~--~---
[Lift] Re: Help on "Build from source"
Thanks everyone for your help and replies! It builds successful in my new clean colinux vm. Nile Black On Wed, Jul 29, 2009 at 10:11 PM, Timothy Perrett wrote: > > FYI, David MacIver recently wrote a blog about exactly how package > imports work :-) > > http://www.drmaciver.com/2009/07/how-packages-work-in-scala/ > > Its interesting reading so perhaps that will help Nile. > > Cheers, Tim > > On Jul 29, 3:06 pm, David Pollak > wrote: > > Nile, > > > > Scala imports are relative unless the path of the import is prefixed by > > "_root_". This behavior is the subject of fierce discussion on the Scala > > list. What does relative mean? It's like this: > > > > import net.liftweb._ > > import http._ // imports net.liftweb.http._ > > > > The problem is that if you have a JAR with some net.java.blah package in > it, > > the Scala compiler will look to resolve java.concurrent._ as > > net.java.concurrent._ > > > > We've generally tried to be explicit about using _root_ for all our > imports, > > etc., but some lazy good for nothing Lift committers (I'm thinking about > > me), don't always follow the rule... and this has led to the pain you are > > experiencing. > > > > So, I don't know how Maven uses your environment variables, but that's > the > > thing that's poking at the issue. > > > > I did some work to make the import paths in Lift absolute. I'll spend > time > > today finishing the cleanup. > > > > Thanks, > > > > David > > > > > > > > > > > > On Tue, Jul 28, 2009 at 10:52 PM, nile black > wrote: > > > Hi,Everyone > > > > > i try to fix the problem > > > eg: > > > [WARNING] > D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.sc > ala:16: > > > error: value util is not a member of package net.java > > > [WARNING] import java.util.concurrent.locks._ > > > > > i use > > > import _root_.java.util.concurrent.locks._ > > > instead of > > > import java.util.concurrent.locks._ > > > > > the error disappear! it works. > > > > > but my question is what's difference between with or without _root_??? > > > > > Nile Black > > > > > On Wed, Jul 29, 2009 at 1:07 PM, nile black > wrote: > > > > >> [WARNING] > > >> > D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.sc > ala:16: > > >> error: value util is not a member of package net.java > > >> [WARNING] import java.util.concurrent.locks._ > > > > -- > > Lift, the simply functional web frameworkhttp://liftweb.net > > Beginning Scalahttp://www.apress.com/book/view/1430219890 > > Follow me:http://twitter.com/dpp > > Git some:http://github.com/dpp > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~--~~~~--~~--~--~---
[Lift] Re: Help on "Build from source"
FYI, David MacIver recently wrote a blog about exactly how package imports work :-) http://www.drmaciver.com/2009/07/how-packages-work-in-scala/ Its interesting reading so perhaps that will help Nile. Cheers, Tim On Jul 29, 3:06 pm, David Pollak wrote: > Nile, > > Scala imports are relative unless the path of the import is prefixed by > "_root_". This behavior is the subject of fierce discussion on the Scala > list. What does relative mean? It's like this: > > import net.liftweb._ > import http._ // imports net.liftweb.http._ > > The problem is that if you have a JAR with some net.java.blah package in it, > the Scala compiler will look to resolve java.concurrent._ as > net.java.concurrent._ > > We've generally tried to be explicit about using _root_ for all our imports, > etc., but some lazy good for nothing Lift committers (I'm thinking about > me), don't always follow the rule... and this has led to the pain you are > experiencing. > > So, I don't know how Maven uses your environment variables, but that's the > thing that's poking at the issue. > > I did some work to make the import paths in Lift absolute. I'll spend time > today finishing the cleanup. > > Thanks, > > David > > > > > > On Tue, Jul 28, 2009 at 10:52 PM, nile black wrote: > > Hi,Everyone > > > i try to fix the problem > > eg: > > [WARNING] > > D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.sc > > ala:16: > > error: value util is not a member of package net.java > > [WARNING] import java.util.concurrent.locks._ > > > i use > > import _root_.java.util.concurrent.locks._ > > instead of > > import java.util.concurrent.locks._ > > > the error disappear! it works. > > > but my question is what's difference between with or without _root_??? > > > Nile Black > > > On Wed, Jul 29, 2009 at 1:07 PM, nile black wrote: > > >> [WARNING] > >> D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.sc > >> ala:16: > >> error: value util is not a member of package net.java > >> [WARNING] import java.util.concurrent.locks._ > > -- > Lift, the simply functional web frameworkhttp://liftweb.net > Beginning Scalahttp://www.apress.com/book/view/1430219890 > Follow me:http://twitter.com/dpp > Git some:http://github.com/dpp --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~--~~~~--~~--~--~---
[Lift] Re: Help on "Build from source"
Nile, Scala imports are relative unless the path of the import is prefixed by "_root_". This behavior is the subject of fierce discussion on the Scala list. What does relative mean? It's like this: import net.liftweb._ import http._ // imports net.liftweb.http._ The problem is that if you have a JAR with some net.java.blah package in it, the Scala compiler will look to resolve java.concurrent._ as net.java.concurrent._ We've generally tried to be explicit about using _root_ for all our imports, etc., but some lazy good for nothing Lift committers (I'm thinking about me), don't always follow the rule... and this has led to the pain you are experiencing. So, I don't know how Maven uses your environment variables, but that's the thing that's poking at the issue. I did some work to make the import paths in Lift absolute. I'll spend time today finishing the cleanup. Thanks, David On Tue, Jul 28, 2009 at 10:52 PM, nile black wrote: > Hi,Everyone > > i try to fix the problem > eg: > [WARNING] > D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.scala:16: > error: value util is not a member of package net.java > [WARNING] import java.util.concurrent.locks._ > > i use > import _root_.java.util.concurrent.locks._ > instead of > import java.util.concurrent.locks._ > > the error disappear! it works. > > but my question is what's difference between with or without _root_??? > > > Nile Black > > > > On Wed, Jul 29, 2009 at 1:07 PM, nile black wrote: > >> [WARNING] >> D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.scala:16: >> error: value util is not a member of package net.java >> [WARNING] import java.util.concurrent.locks._ >> > > > > > -- Lift, the simply functional web framework http://liftweb.net Beginning Scala http://www.apress.com/book/view/1430219890 Follow me: http://twitter.com/dpp Git some: http://github.com/dpp --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~--~~~~--~~--~--~---
[Lift] Re: Help on "Build from source"
Thanks everyone for replies! I've checked my jdk,classpath,maven,but the problem go on. D:\user\liftweb>set ALLUSERSPROFILE=C:\Documents and Settings\All Users APPDATA=C:\Documents and Settings\Administrator\Application Data APR_ICONV_PATH=D:\Program Files\Subversion\iconv classpath=.;D:\opt\Java\jdk1.5.0_16\lib;D:\opt\Java\jdk1.5.0_16\jre\lib\rt.jar;D:\opt\Java\jdk1.5.0_16\lib\tools.jar;d:\PROGRA~1\JMF21~1.1E\lib\sound.jar;d:\PRO GRA~1\JMF21~1.1E\lib\jmf.jar;d:\PROGRA~1\JMF21~1.1E\lib; CLIENTNAME=Console COLINUX=d:\coLinux CommonProgramFiles=C:\Program Files\Common Files COMPUTERNAME=PC-200905040902 ComSpec=C:\WINDOWS\system32\cmd.exe ERROR_CODE=1 FP_NO_HOST_CHECK=NO GRAILS_HOME=D:\opt\grails HOME=C:\Documents and Settings\Administrator HOMEDRIVE=C: HOMEPATH=\Documents and Settings\Administrator JAVA_HOME=D:\opt\Java\jdk1.5.0_16 LOGONSERVER=\\PC-200905040902 M2=D:\opt\apache-maven-2.0.10\bin M2_HOME=D:\opt\apache-maven-2.0.10 MAVEN_OPTS=-Xmx1024m NUMBER_OF_PROCESSORS=2 OS=Windows_NT Path=D:\opt\apache-maven-2.0.10\bin; d:\opt\liftweb-1.0/apache-maven/bin;.;D:\opt\grails\bin;d:\oracle\product\10.2.0\client_1\bin;D:\opt\JavaFX\javafx-sdk1.1\bi n;D:\opt\JavaFX\javafx-sdk1.1\emulator\bin;.;D:\opt\Java\jdk1.5.0_16/bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\IDM Computer S olutions\UltraEdit-32;d:\Program Files\Subversion\bin;D:\Program Files\TortoiseSVN\bin;.;d:\opt;D:\Python25\;d:\opt\opencv\lib; PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH PROCESSOR_ARCHITECTURE=x86 PROCESSOR_IDENTIFIER=x86 Family 15 Model 107 Stepping 1, AuthenticAMD PROCESSOR_LEVEL=15 PROCESSOR_REVISION=6b01 ProgramFiles=C:\Program Files PROMPT=$P$G SCALA_HOME22=D:\opt\scala-2.7.5.final\ SESSIONNAME=Console SystemDrive=C: SystemRoot=C:\WINDOWS TEMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp TMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp USERDOMAIN=PC-200905040902 USERNAME=Administrator USERPROFILE=C:\Documents and Settings\Administrator VS80COMNTOOLS=C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\ windir=C:\WINDOWS D:\user\liftweb>mvn compile [INFO] Scanning for projects... [INFO] Reactor build order: [INFO] Lift [INFO] Lift Utils [INFO] Lift Actor [INFO] Lift WebKit [INFO] Lift Wizard [INFO] Lift OSGi [INFO] Lift Widgets [INFO] Lift Mapper [INFO] Lift Machine [INFO] Lift Record [INFO] Lift Textile [INFO] Lift Facebook [INFO] Lift AMQP [INFO] Lift XMPP [INFO] Lift OpenID [INFO] Lift OAuth [INFO] Lift PayPal [INFO] Lift TestKit [INFO] Lift Core (full lift) [INFO] Lift JTA [INFO] Lift JPA [INFO] Lift Sites [INFO] Lift Example [INFO] OSGi Examples for Lift - Hello [INFO] OSGi Examples for Lift [INFO] Skittr Example [INFO] HelloLift example application [INFO] HelloDarwin tutorial application [INFO] JPA Demo Master [INFO] JPADemo-spa [INFO] JPADemo-web [INFO] HTTP Authentication example [INFO] lift-archetype-blank [INFO] lift-archetype-basic [INFO] lift-archetype-jpa-basic [INFO] lift-archetype-jpa-blank [INFO] lift-archetype-jpa-blank-single WAGON_VERSION: 1.0-beta-2 [INFO] [INFO] Building Lift [INFO]task-segment: [compile] [INFO] [INFO] [scala:compile {execution: default}] [INFO] Checking for multiple versions of scala [WARNING] No source files found. [INFO] [INFO] Building Lift Utils [INFO]task-segment: [compile] [INFO] [INFO] [resources:resources] [WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent! [INFO] skip non existing resourceDirectory D:\user\liftweb\lift-util\src\main\resources [INFO] [yuicompressor:compress {execution: default}] [INFO] nb warnings: 0, nb errors: 0 [INFO] [compiler:compile] [INFO] Nothing to compile - all classes are up to date [INFO] [scala:compile {execution: default}] [INFO] Checking for multiple versions of scala [INFO] Compiling 37 source files to D:\user\liftweb\lift-util\target\classes [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.scala:16: error: value util is not a member of package net.java [WARNING] import java.util.concurrent.locks._ [WARNING] ^ [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\CurrencyZone.scala:69: error: value lang is not a member of package net.java [WARNING] } catch { case e: java.lang.NumberFormatException => { [WARNING]^ [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\CurrencyZone.scala:72: error: value text is not a member of package net.java [WARNING] } catch { case e: java.text.ParseException => { [WARNING]^ [WARNING] D:\use
[Lift] Re: Help on "Build from source"
Nile Black On Wed, Jul 29, 2009 at 2:31 AM, David Pollak wrote: > > > On Tue, Jul 28, 2009 at 11:05 AM, Naftoli Gugenheim > wrote: > >> >> If it thinks import java.xxx is a relative import of net.java.xxx, then it >> must be you're somehow building it with a net.java package in the classpath. >> The question is why maven is building it with a different classpath than >> it uses for everyone else, and why those imports don't start with _root_. > > > Yeah... that's the problem. I wonder if he added some classes to his > pom.xml file or if there's some global classpath that's bleeding into the > Maven process. > HI,David Pollak, what means " if he added some classes to his pom.xml file or if there's some global classpath that's bleeding into the Maven process." i did not change any file after checkout . >if there's some global classpath is it means my system evn "classpath" ? > > > >> >> >> - >> TylerWeir wrote: >> >> >> "why i cann't see my post at group?" >> >> All new members are moderated to start with. >> >> >> On Jul 27, 11:56 pm, nile black wrote: >> > why i cann't see my post at group? >> > >> > >> > >> > On Tue, Jul 28, 2009 at 11:48 AM, Nile Black >> wrote: >> > > [INFO] Building Lift Utils >> > > [INFO]task-segment: [install] >> > > [INFO] >> > > >> >> > > [INFO] [resources:resources] >> > > [INFO] Using default encoding to copy filtered resources. >> > > [INFO] [yuicompressor:compress {execution: default}] >> > > [INFO] nb warnings: 0, nb errors: 0 >> > > [INFO] [compiler:compile] >> > > [INFO] Nothing to compile - all classes are up to date >> > > [INFO] [scala:compile {execution: default}] >> > > [INFO] Checking for multiple versions of scala >> > > [INFO] Compiling 37 source files to D:\user\liftweb\lift-util\target >> > > \classes >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \ConcurrentLock.scala:16: error: value util is not a member of package >> > > net.java >> > > [WARNING] import java.util.concurrent.locks._ >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \CurrencyZone.scala:69: error: value lang is not a member of package >> > > net.java >> > > [WARNING] } catch { case e: java.lang.NumberFormatException => >> > > { >> > > [WARNING]^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \CurrencyZone.scala:72: error: value text is not a member of package >> > > net.java >> > > [WARNING] } catch { case e: >> > > java.text.ParseException => { >> > > [WARNING]^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \CurrencyZone.scala:103: error: value math is not a member of package >> > > net.java >> > > [WARNING] make(new BigDecimal(this.amount.bigDecimal.divide >> > > (that.amount.bigDecimal, scale, java.math.BigDecimal.ROUND_HALF_UP)) ) >> > > [WARNING] >> > > ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \IOHelpers.scala:104: error: value io is not a member of package >> > > net.java >> > > [WARNING] def doClose[T](is: java.io.Closeable*)(f : => T): T = { >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \Mailer.scala:84: error: value util is not a member of package >> > > net.java >> > > [WARNING] import java.util.Properties >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \PCDataMarkupParser.scala:187: error: value io is not a member of >> > > package net.java >> > > [WARNING] import java.io.ByteArrayInputStream >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \Props.scala:178: error: value io is not a member of package net.java >> > > [WARNING] import java.io.{ByteArrayInputStream} >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \Props.scala:179: error: value util is not a member of package >> > > net.java >> > > [WARNING] import java.util.InvalidPropertiesFormatException >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \SoftReferenceCache.scala:3: error: value lang is not a member of >> > > package net.java >> > > [WARNING] import java.lang.ref.{ReferenceQueue,SoftReference}; >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util >> > > \SoftReferenceCache.scala:4: error: value util is not a member of >> > > package net.java >> > > [WARNING] import java.util._ >> > > [WARNING] ^ >> > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\l
[Lift] Re: Help on "Build from source"
Hi,Everyone i try to fix the problem eg: [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.scala:16: error: value util is not a member of package net.java [WARNING] import java.util.concurrent.locks._ i use import _root_.java.util.concurrent.locks._ instead of import java.util.concurrent.locks._ the error disappear! it works. but my question is what's difference between with or without _root_??? Nile Black On Wed, Jul 29, 2009 at 1:07 PM, nile black wrote: > [WARNING] > D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util\ConcurrentLock.scala:16: > error: value util is not a member of package net.java > [WARNING] import java.util.concurrent.locks._ > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~--~~~~--~~--~--~---
[Lift] Re: Help on "Build from source"
On Tue, Jul 28, 2009 at 11:05 AM, Naftoli Gugenheim wrote: > > If it thinks import java.xxx is a relative import of net.java.xxx, then it > must be you're somehow building it with a net.java package in the classpath. > The question is why maven is building it with a different classpath than it > uses for everyone else, and why those imports don't start with _root_. Yeah... that's the problem. I wonder if he added some classes to his pom.xml file or if there's some global classpath that's bleeding into the Maven process. > > > - > TylerWeir wrote: > > > "why i cann't see my post at group?" > > All new members are moderated to start with. > > > On Jul 27, 11:56 pm, nile black wrote: > > why i cann't see my post at group? > > > > > > > > On Tue, Jul 28, 2009 at 11:48 AM, Nile Black > wrote: > > > [INFO] Building Lift Utils > > > [INFO]task-segment: [install] > > > [INFO] > > > > > > > [INFO] [resources:resources] > > > [INFO] Using default encoding to copy filtered resources. > > > [INFO] [yuicompressor:compress {execution: default}] > > > [INFO] nb warnings: 0, nb errors: 0 > > > [INFO] [compiler:compile] > > > [INFO] Nothing to compile - all classes are up to date > > > [INFO] [scala:compile {execution: default}] > > > [INFO] Checking for multiple versions of scala > > > [INFO] Compiling 37 source files to D:\user\liftweb\lift-util\target > > > \classes > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \ConcurrentLock.scala:16: error: value util is not a member of package > > > net.java > > > [WARNING] import java.util.concurrent.locks._ > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \CurrencyZone.scala:69: error: value lang is not a member of package > > > net.java > > > [WARNING] } catch { case e: java.lang.NumberFormatException => > > > { > > > [WARNING]^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \CurrencyZone.scala:72: error: value text is not a member of package > > > net.java > > > [WARNING] } catch { case e: > > > java.text.ParseException => { > > > [WARNING]^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \CurrencyZone.scala:103: error: value math is not a member of package > > > net.java > > > [WARNING] make(new BigDecimal(this.amount.bigDecimal.divide > > > (that.amount.bigDecimal, scale, java.math.BigDecimal.ROUND_HALF_UP)) ) > > > [WARNING] > > > ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \IOHelpers.scala:104: error: value io is not a member of package > > > net.java > > > [WARNING] def doClose[T](is: java.io.Closeable*)(f : => T): T = { > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \Mailer.scala:84: error: value util is not a member of package > > > net.java > > > [WARNING] import java.util.Properties > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \PCDataMarkupParser.scala:187: error: value io is not a member of > > > package net.java > > > [WARNING] import java.io.ByteArrayInputStream > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \Props.scala:178: error: value io is not a member of package net.java > > > [WARNING] import java.io.{ByteArrayInputStream} > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \Props.scala:179: error: value util is not a member of package > > > net.java > > > [WARNING] import java.util.InvalidPropertiesFormatException > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \SoftReferenceCache.scala:3: error: value lang is not a member of > > > package net.java > > > [WARNING] import java.lang.ref.{ReferenceQueue,SoftReference}; > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \SoftReferenceCache.scala:4: error: value util is not a member of > > > package net.java > > > [WARNING] import java.util._ > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \SoftReferenceCache.scala:147: error: wrong number of arguments for > > > constructor Object: ()jav > > > a.lang.Object > > > [WARNING] queue: ReferenceQueue[Any]) extends > > > SoftReference[V](v, queue) { > > > [WARNING] ^ > > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > > \TemplateCache.scala:17: error: value util is not a member
[Lift] Re: Help on "Build from source"
If it thinks import java.xxx is a relative import of net.java.xxx, then it must be you're somehow building it with a net.java package in the classpath. The question is why maven is building it with a different classpath than it uses for everyone else, and why those imports don't start with _root_. - TylerWeir wrote: "why i cann't see my post at group?" All new members are moderated to start with. On Jul 27, 11:56 pm, nile black wrote: > why i cann't see my post at group? > > > > On Tue, Jul 28, 2009 at 11:48 AM, Nile Black wrote: > > [INFO] Building Lift Utils > > [INFO] task-segment: [install] > > [INFO] > > > > [INFO] [resources:resources] > > [INFO] Using default encoding to copy filtered resources. > > [INFO] [yuicompressor:compress {execution: default}] > > [INFO] nb warnings: 0, nb errors: 0 > > [INFO] [compiler:compile] > > [INFO] Nothing to compile - all classes are up to date > > [INFO] [scala:compile {execution: default}] > > [INFO] Checking for multiple versions of scala > > [INFO] Compiling 37 source files to D:\user\liftweb\lift-util\target > > \classes > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \ConcurrentLock.scala:16: error: value util is not a member of package > > net.java > > [WARNING] import java.util.concurrent.locks._ > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \CurrencyZone.scala:69: error: value lang is not a member of package > > net.java > > [WARNING] } catch { case e: java.lang.NumberFormatException => > > { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \CurrencyZone.scala:72: error: value text is not a member of package > > net.java > > [WARNING] } catch { case e: > > java.text.ParseException => { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \CurrencyZone.scala:103: error: value math is not a member of package > > net.java > > [WARNING] make(new BigDecimal(this.amount.bigDecimal.divide > > (that.amount.bigDecimal, scale, java.math.BigDecimal.ROUND_HALF_UP)) ) > > [WARNING] > > ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \IOHelpers.scala:104: error: value io is not a member of package > > net.java > > [WARNING] def doClose[T](is: java.io.Closeable*)(f : => T): T = { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \Mailer.scala:84: error: value util is not a member of package > > net.java > > [WARNING] import java.util.Properties > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \PCDataMarkupParser.scala:187: error: value io is not a member of > > package net.java > > [WARNING] import java.io.ByteArrayInputStream > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \Props.scala:178: error: value io is not a member of package net.java > > [WARNING] import java.io.{ByteArrayInputStream} > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \Props.scala:179: error: value util is not a member of package > > net.java > > [WARNING] import java.util.InvalidPropertiesFormatException > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \SoftReferenceCache.scala:3: error: value lang is not a member of > > package net.java > > [WARNING] import java.lang.ref.{ReferenceQueue,SoftReference}; > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \SoftReferenceCache.scala:4: error: value util is not a member of > > package net.java > > [WARNING] import java.util._ > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \SoftReferenceCache.scala:147: error: wrong number of arguments for > > constructor Object: ()jav > > a.lang.Object > > [WARNING] queue: ReferenceQueue[Any]) extends > > SoftReference[V](v, queue) { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \TemplateCache.scala:17: error: value util is not a member of package > > net.java > > [WARNING] import java.util.{Locale} > > [WARNING] ^ > > [WARNING] 13 errors found > > [INFO] > > > > [ERROR] BUILD FAILURE > > [INFO] > > > > [INFO] command line returned non-zero value:1 > > [INFO] > > --
[Lift] Re: Help on "Build from source"
"why i cann't see my post at group?" All new members are moderated to start with. On Jul 27, 11:56 pm, nile black wrote: > why i cann't see my post at group? > > > > On Tue, Jul 28, 2009 at 11:48 AM, Nile Black wrote: > > [INFO] Building Lift Utils > > [INFO] task-segment: [install] > > [INFO] > > > > [INFO] [resources:resources] > > [INFO] Using default encoding to copy filtered resources. > > [INFO] [yuicompressor:compress {execution: default}] > > [INFO] nb warnings: 0, nb errors: 0 > > [INFO] [compiler:compile] > > [INFO] Nothing to compile - all classes are up to date > > [INFO] [scala:compile {execution: default}] > > [INFO] Checking for multiple versions of scala > > [INFO] Compiling 37 source files to D:\user\liftweb\lift-util\target > > \classes > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \ConcurrentLock.scala:16: error: value util is not a member of package > > net.java > > [WARNING] import java.util.concurrent.locks._ > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \CurrencyZone.scala:69: error: value lang is not a member of package > > net.java > > [WARNING] } catch { case e: java.lang.NumberFormatException => > > { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \CurrencyZone.scala:72: error: value text is not a member of package > > net.java > > [WARNING] } catch { case e: > > java.text.ParseException => { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \CurrencyZone.scala:103: error: value math is not a member of package > > net.java > > [WARNING] make(new BigDecimal(this.amount.bigDecimal.divide > > (that.amount.bigDecimal, scale, java.math.BigDecimal.ROUND_HALF_UP)) ) > > [WARNING] > > ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \IOHelpers.scala:104: error: value io is not a member of package > > net.java > > [WARNING] def doClose[T](is: java.io.Closeable*)(f : => T): T = { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \Mailer.scala:84: error: value util is not a member of package > > net.java > > [WARNING] import java.util.Properties > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \PCDataMarkupParser.scala:187: error: value io is not a member of > > package net.java > > [WARNING] import java.io.ByteArrayInputStream > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \Props.scala:178: error: value io is not a member of package net.java > > [WARNING] import java.io.{ByteArrayInputStream} > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \Props.scala:179: error: value util is not a member of package > > net.java > > [WARNING] import java.util.InvalidPropertiesFormatException > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \SoftReferenceCache.scala:3: error: value lang is not a member of > > package net.java > > [WARNING] import java.lang.ref.{ReferenceQueue,SoftReference}; > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \SoftReferenceCache.scala:4: error: value util is not a member of > > package net.java > > [WARNING] import java.util._ > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \SoftReferenceCache.scala:147: error: wrong number of arguments for > > constructor Object: ()jav > > a.lang.Object > > [WARNING] queue: ReferenceQueue[Any]) extends > > SoftReference[V](v, queue) { > > [WARNING] ^ > > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > > \TemplateCache.scala:17: error: value util is not a member of package > > net.java > > [WARNING] import java.util.{Locale} > > [WARNING] ^ > > [WARNING] 13 errors found > > [INFO] > > > > [ERROR] BUILD FAILURE > > [INFO] > > > > [INFO] command line returned non-zero value:1 > > [INFO] > > > > [INFO] For more information, run Maven with the -e switch > > [INFO] > > > > [INFO] Total time: 1 minute 15 seconds > > [INFO] Finished at: Tue Jul 28 11:47:44 CST 2009 > > [INFO] Final Memory: 22M/39M > > [INFO] > > --
[Lift] Re: Help on "Build from source"
Can you provide some enviroment details What version of maven are you using? What JDK? What maven command did you run? Cheers, Tim On Jul 28, 4:48 am, Nile Black wrote: > [INFO] Building Lift Utils > [INFO] task-segment: [install] > [INFO] > > [INFO] [resources:resources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [yuicompressor:compress {execution: default}] > [INFO] nb warnings: 0, nb errors: 0 > [INFO] [compiler:compile] > [INFO] Nothing to compile - all classes are up to date > [INFO] [scala:compile {execution: default}] > [INFO] Checking for multiple versions of scala > [INFO] Compiling 37 source files to D:\user\liftweb\lift-util\target > \classes > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \ConcurrentLock.scala:16: error: value util is not a member of package > net.java > [WARNING] import java.util.concurrent.locks._ > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \CurrencyZone.scala:69: error: value lang is not a member of package > net.java > [WARNING] } catch { case e: java.lang.NumberFormatException => > { > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \CurrencyZone.scala:72: error: value text is not a member of package > net.java > [WARNING] } catch { case e: > java.text.ParseException => { > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \CurrencyZone.scala:103: error: value math is not a member of package > net.java > [WARNING] make(new BigDecimal(this.amount.bigDecimal.divide > (that.amount.bigDecimal, scale, java.math.BigDecimal.ROUND_HALF_UP)) ) > [WARNING] > ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \IOHelpers.scala:104: error: value io is not a member of package > net.java > [WARNING] def doClose[T](is: java.io.Closeable*)(f : => T): T = { > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \Mailer.scala:84: error: value util is not a member of package > net.java > [WARNING] import java.util.Properties > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \PCDataMarkupParser.scala:187: error: value io is not a member of > package net.java > [WARNING] import java.io.ByteArrayInputStream > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \Props.scala:178: error: value io is not a member of package net.java > [WARNING] import java.io.{ByteArrayInputStream} > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \Props.scala:179: error: value util is not a member of package > net.java > [WARNING] import java.util.InvalidPropertiesFormatException > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \SoftReferenceCache.scala:3: error: value lang is not a member of > package net.java > [WARNING] import java.lang.ref.{ReferenceQueue,SoftReference}; > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \SoftReferenceCache.scala:4: error: value util is not a member of > package net.java > [WARNING] import java.util._ > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \SoftReferenceCache.scala:147: error: wrong number of arguments for > constructor Object: ()jav > a.lang.Object > [WARNING] queue: ReferenceQueue[Any]) extends > SoftReference[V](v, queue) { > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \TemplateCache.scala:17: error: value util is not a member of package > net.java > [WARNING] import java.util.{Locale} > [WARNING] ^ > [WARNING] 13 errors found > [INFO] > > [ERROR] BUILD FAILURE > [INFO] > > [INFO] command line returned non-zero value:1 > [INFO] > > [INFO] For more information, run Maven with the -e switch > [INFO] > > [INFO] Total time: 1 minute 15 seconds > [INFO] Finished at: Tue Jul 28 11:47:44 CST 2009 > [INFO] Final Memory: 22M/39M > [INFO] > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.
[Lift] Re: Help on "Build from source"
why i cann't see my post at group? On Tue, Jul 28, 2009 at 11:48 AM, Nile Black wrote: > [INFO] Building Lift Utils > [INFO]task-segment: [install] > [INFO] > > [INFO] [resources:resources] > [INFO] Using default encoding to copy filtered resources. > [INFO] [yuicompressor:compress {execution: default}] > [INFO] nb warnings: 0, nb errors: 0 > [INFO] [compiler:compile] > [INFO] Nothing to compile - all classes are up to date > [INFO] [scala:compile {execution: default}] > [INFO] Checking for multiple versions of scala > [INFO] Compiling 37 source files to D:\user\liftweb\lift-util\target > \classes > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \ConcurrentLock.scala:16: error: value util is not a member of package > net.java > [WARNING] import java.util.concurrent.locks._ > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \CurrencyZone.scala:69: error: value lang is not a member of package > net.java > [WARNING] } catch { case e: java.lang.NumberFormatException => > { > [WARNING]^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \CurrencyZone.scala:72: error: value text is not a member of package > net.java > [WARNING] } catch { case e: > java.text.ParseException => { > [WARNING]^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \CurrencyZone.scala:103: error: value math is not a member of package > net.java > [WARNING] make(new BigDecimal(this.amount.bigDecimal.divide > (that.amount.bigDecimal, scale, java.math.BigDecimal.ROUND_HALF_UP)) ) > [WARNING] > ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \IOHelpers.scala:104: error: value io is not a member of package > net.java > [WARNING] def doClose[T](is: java.io.Closeable*)(f : => T): T = { > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \Mailer.scala:84: error: value util is not a member of package > net.java > [WARNING] import java.util.Properties > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \PCDataMarkupParser.scala:187: error: value io is not a member of > package net.java > [WARNING] import java.io.ByteArrayInputStream > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \Props.scala:178: error: value io is not a member of package net.java > [WARNING] import java.io.{ByteArrayInputStream} > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \Props.scala:179: error: value util is not a member of package > net.java > [WARNING] import java.util.InvalidPropertiesFormatException > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \SoftReferenceCache.scala:3: error: value lang is not a member of > package net.java > [WARNING] import java.lang.ref.{ReferenceQueue,SoftReference}; > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \SoftReferenceCache.scala:4: error: value util is not a member of > package net.java > [WARNING] import java.util._ > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \SoftReferenceCache.scala:147: error: wrong number of arguments for > constructor Object: ()jav > a.lang.Object > [WARNING] queue: ReferenceQueue[Any]) extends > SoftReference[V](v, queue) { > [WARNING] ^ > [WARNING] D:\user\liftweb\lift-util\src\main\scala\net\liftweb\util > \TemplateCache.scala:17: error: value util is not a member of package > net.java > [WARNING] import java.util.{Locale} > [WARNING] ^ > [WARNING] 13 errors found > [INFO] > > [ERROR] BUILD FAILURE > [INFO] > > [INFO] command line returned non-zero value:1 > [INFO] > > [INFO] For more information, run Maven with the -e switch > [INFO] > > [INFO] Total time: 1 minute 15 seconds > [INFO] Finished at: Tue Jul 28 11:47:44 CST 2009 > [INFO] Final Memory: 22M/39M > [INFO] > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.