Projekat

Općenito

Profil

Akcije

Prijedlozi #19688

Zatvoren

scala jvm, ola bini polylgot's idea, scala vs erlang

Dodano od Ernad Husremović prije skoro 15 godina. Izmjenjeno prije više od 14 godina.

Status:
Zatvoreno
Prioritet:
Normalan
Odgovorna osoba:
Kategorija:
-
Početak:
16.02.2010
Završetak:
% završeno:

0%

Procjena vremena:

Opis

http://en.wikipedia.org/wiki/Scala_%28programming_language%29

Scala (pronounced /ˈskɑːlə/ SKAH-lə or /ˈskeɪlə/ SKAY-lə) is a multi-paradigm programming language designed to integrate features of object-oriented programming and functional programming. The name Scala stands for "scalable language", signifying that it is designed to grow with the demands of its users.


Fajlovi

Hello.scala (2,11 KB) Hello.scala pivot example Ernad Husremović, 16.02.2010 18:39
form.wtkx (4,42 KB) form.wtkx Ernad Husremović, 16.02.2010 18:39
form.wtkx (4,42 KB) form.wtkx Ernad Husremović, 16.02.2010 18:39
master.pdf (1,51 MB) master.pdf liftbook pdf (ima errore: nema sadržaja i referenci) Ernad Husremović, 17.02.2010 18:01
exploring_lift_15_10_2009.pdf (1,88 MB) exploring_lift_15_10_2009.pdf evo pdf-a sa google groups ovog projekta Ernad Husremović, 18.02.2010 12:59

Povezani tiketi 3 (0 otvoreno3 zatvorenih)

korelira sa developer toolbox - Prijedlozi #19596: port harbour gt, rdd? -> ? ima li smisla raditi port ?! ruby, eclipse, qtZatvorenoErnad Husremović03.02.2010

Akcije
korelira sa developer toolbox - Podrška #19713: eclipse scala pluginZatvorenoErnad Husremović18.02.2010

Akcije
korelira sa developer toolbox - Podrška #19718: nanoc: blog blog blog, ruby rvmZatvorenoErnad Husremović19.02.2010

Akcije
Akcije #2

Izmjenjeno od Ernad Husremović prije skoro 15 godina

ola bini polyglot idea

This is the whole Polyglot idea. And my take on it is this: the JVM is the best platform there is for Polyglot platform, and I think we will see three language layers emerge in larger applications. Now, the languages won't necessarily be built on top of each other, but they will all run on the JVM.

Akcije #3

Izmjenjeno od Ernad Husremović prije skoro 15 godina

  • Naslov promijenjeno iz scala jvm u scala jvm, ola bini polylgot's idea
Akcije #4

Izmjenjeno od Ernad Husremović prije skoro 15 godina

scala ide for eclipse

  • Support for mixed Scala/Java projects and any combination of Scala/Java project dependencies. Type driven operations are transparent across Scala and Java files and projects, allowing straightforward references from Scala to Java and vice versa.
  • A Scala editor with syntax highlighting, inferred type and scaladoc hovers, hyperlinking to definitions, code completion, error and warning markers, indentation, brace matching.
  • Project and source navigation including Scala support in the Package explorer view with embedded outline, outline view, quick outline, open type, open type hierarchy.
  • Incremental compilation, application launching with integrated debugger, hyperlinking from stacktraces to Scala source, interactive console.
  • Support for Eclipse plugin and OSGi development including hyperlinking to Scala source from plugin.xml and manifest files.
Akcije #6

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://www.scala-blogs.org/2009/02/lift-10-released.html
  • Lift's Comet and Ajax support which allows you to build real-time interactive applications
  • Lift's concise code allowing developer productivity normally associated with Rails and TurboGears
  • Lift's high performance and scalability
  • Lift's built-in support for REST and other web services
  • Lift's use of Scala's type-safety so your tests can focus on business logic
Akcije #7

Izmjenjeno od Ernad Husremović prije skoro 15 godina

As much as I liked Ruby and Rails, I like Scala and Lift better. After more than two years of developing software in Ruby/Rails, we've shifted all our > development efforts to Scala/Lift. And we are not looking back.
Charles Munat, Lightsource Interactive

Akcije #8

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://github.com/dcbriccetti/bird-show

A Scala, lift, Web app for showing pictures from Flickr. See it deployed at http://briccettiphoto.com. Talk slides: http://www.slideshare.net/dcbriccetti

Akcije #10

Izmjenjeno od Ernad Husremović prije skoro 15 godina

wikipedia:

In April 2009 Twitter announced they had switched large portions of their backend from Ruby to Scala and intended to convert the rest.[10] In addition, Wattzon has publicly been noting that its entire platform has been written from the ground up in Scala.[11]

http://www.slideshare.net/al3x/why-scala-presentation

Akcije #13

Izmjenjeno od Ernad Husremović prije skoro 15 godina

erlang actor model

http://java.dzone.com/articles/scala-threadless-concurrent

Erlang has popularized concurrency-oriented programming by implementing an extremely lightweight process model on top of the operating system primitives. The actor model in Erlang is based on strong isolation semantics, self-contained processes with unforgeable process ids and asynchronous message passing. The strong isolation semantics is guaranteed by the underlying virtual machine that enforces single assignment semantics and functional programming model. Hence every Erlang process is a serialized actor that can also be transparently distributed across nodes in a cluster

Akcije #14

Izmjenjeno od Ernad Husremović prije skoro 15 godina

Scala implements the actor model on the JVM - it has to abide by the rules of the underlying platform. It encourages shared-nothing process abstractions, but does not mandate it. However, for all practical purposes, actors in Scala need to be shared-nothing and functional, with all mutable state being private and all shared state being immutable.

Scala Actors are Lightweight

JVM offers shared memory threads with locks as the primary form of concurrency abstractions. But shared memory threads are quite heavyweight and incur severe performance penalties from context switching overheads. For an actor implementation based on a one-to-one mapping with JVM threads, the process payload per Scala actor will not be as lightweight that we can spawn a million instances of an actor for a specific computation. Hence Scala actors have been designed as lightweight event objects, which get scheduled and executed on an underlying worker thread pool that gets automatically resized when all threads block on long running operations. In fact, Scala implements a unified model of actors - thread based and event based. Scala actors offer two form of suspension mechanisms - a full stack frame suspension(implemented as receive) and a suspension based on a continuation closure (implemented as react). In case of event based actors, a wait on react is represented by a continuation closure, i.e. a closure that captures the rest of the actor's computation. When the suspended actor receives a message that matches one of the patterns specified in the actor, the continuation is executed by scheduling the task to one of the worker threads from the underlying thread pool. The paper "Actors that Unify Threads and Events" by Haller and Odersky discusses the details of the implementation.

Akcije #17

Izmjenjeno od Ernad Husremović prije skoro 15 godina

  • Naslov promijenjeno iz scala jvm, ola bini polylgot's idea u scala jvm, ola bini polylgot's idea, scala vs erlang

Erlang is a functional language. This means that data is immutable, like Java’s strings, and there is no risk of side effects. Any operation on some data will result in a new modified version of that data, but the old one stays the same.

Akcije #18

Izmjenjeno od Ernad Husremović prije skoro 15 godina

Erlang is dynamically typed. Scala is statically typed and has a stronger type system than Java. However, a big difference compared to Java is that Scala has type inference. This means that you can omit a lot of type annotations, which makes the code cleaner but the compiler will still do all checks.

Akcije #22

Izmjenjeno od Ernad Husremović prije skoro 15 godina

ovaj scala mongodb drajver mi baš izgleda cool i pokazuje koliko je scala moćna u odnosu na javu

Akcije #25

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://johlrogge.wordpress.com/2009/01/06/making-swt-shine-with-scala/

At Agile 2008 I was calmly coding together with Daniel Brolund in the open space area. We were interrupted by a guy that asked us if we did any coding in Ruby and if we did he will hold a lightning-talk about a framework he had put together to create SWT-gui:s using JRuby. Interestingly enough I had thought about how GUI-coding could probably be improved in a language such as Ruby so I reluctantly stopped what I was doing and watched the lightning talk. This was the first time I ever saw Glimmer and it totally blew me away!

It must be possible to do in Scala!

I had already started playing with Scala and I thought it would be a cool experiment to see if I could do something similar in Scala. After all, scala is a pretty expressive language.

I made the first attempt a few months ago and I think that qualifies as a failure. I got something to work but all the mutable state and redundant classes I had to create bothered me big time.

I showed what I did to colleague and I got some pointers on how to make my code more function-oriented and hence get rid of some redundancy and mutable state. But my lacking knowledge of Scala and FP prevented me from finishing the task back then.

Akcije #28

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://www.sdtimes.com/link/34022

January 1, 2009 —

I believe that comparing Scala with Ruby would give too much honor to Ruby. I'd suggest comparing Ruby with PHP. That's its niche. Of course Ruby is more modern, concise and consistent. But it does not go far.

Scala does. It is the 21st century; paradigms are shifting, we are gradually switching to casual multi-threading. What kind of languages would suit better? Functional ones.

The problem is engineers don't get them. But they do get Scala, and Scala is a good transitional language. It allows people to write as casually as they do in Java, and at the same time it gives more freedom regarding functional style and multi-threaded programming. Maybe what you did 30 years ago could be still better done in Fortran, COBOL and BASIC. Who knows? But it is 2010, and it's time to move on.

Vlad Patryshev

Editor’s note: The following letter is reprinted from the Dec. 1 issue, with a reply from Andrew Binstock following.

Scala is a very nice addition to the JVM language toolkit, but some of your facts are way off the mark.

Both JRuby and Jython represent non-Java JVM languages and have vastly more TIOBE-share than Scala. Ruby alone represents more users worldwide (albeit not necessarily on the JVM) than Scala, Clojure and Groovy combined.

The performance of Scala is certainly solid, but it's not as fast as Java. It may sometimes allow more elegant (and perhaps more efficient) representations of certain algorithms, but it can't do anything Java can't do (and it can't do many things Java can do).

Your comparison with "Java 6 client" is also incorrect, since Scala running on the client VM would degrade just as much as Java does. Actors are a good way to do concurrency, but Scala has only "included them in the language" by having them available as part of Scala's runtime libraries and by having a syntax for asynchronous message dispatches. The same could be done to any of the other languages with almost no effort...but the other languages are actually in better shape, since you can use whatever actor framework suits you rather than the one set up by the language authors.

Excitement about Scala is not misplaced; it is a strong contender to compete with Java as the leading statically typed application language on the JVM. But breathless assertions about its performance, adoption and potential should be tempered with a dose of facts.

Charles Oliver Nutter

Andrew Binstock replies: "Both JRuby and Jython represent non-JVM languages and have vastly more TIOBE share than Scala."

Did you actually go to the Tiobe site before writing the above? There is no JVM language that is listed ahead of Scala, other than Java. Exactly as I stated. If you disagree with Tiobe, post numbers from a reputable third party. I'll be happy to consider them. Till then, we have Tiobe.

"Your comparison with 'Java 6 client' is also incorrect, since Scala running on the client VM would degrade just as much as Java does."

Why? Can't Scala generate faster bytecodes than javac? Unfortunately, since I wrote this column, Alioth has changed the list of Java programs they test and no longer publish benchmarks for the Java client. And archive.org does not have the recent benchmarks archived. So you'll have to take me at my word that I checked it just before I wrote the piece. To extend my point on better code generations, here is a link to an Alioth benchmark where Scala comes in ahead of one version of Java 6 server and behind another.

In both cases, the numbers are very close, making Scala the fastest non-Java JVM language.

Re: actors in Scala, you wrote: "The other languages are actually in better shape, since you can use whatever actor framework suits you, rather than the one set up by the language authors."

Not so. Any actor framework that is written for the JVM is just as accessible from Scala as it would be from Java (or other JVM languages).

"Assertions about its performance, adoption and potential should be tempered with a dose of facts." Couldn't agree more. When you find an incorrect fact in the article, please let me know. I'll promptly correct it. For readers' edification: Nutter is the driving force behind another JVM language: JRuby.

Akcije #29

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://www.scala-lang.org/node/128

object UnifiedTypes {
  def main(args: Array[String]) {
    val set = new scala.collection.mutable.HashSet[Any]
    set += "This is a string"  // add a string
    set += 732                 // add a number
    set += 'c'                 // add a character
    set += true                // add a boolean value
    set += main _              // add the main function
    val iter: Iterator[Any] = set.elements
    while (iter.hasNext) {
      println(iter.next.toString())
    }
  }
}

Akcije #30

Izmjenjeno od Ernad Husremović prije skoro 15 godina

A Tour of Scala: Traits

Similar to interfaces in Java, traits are used to define object types by specifying the signature of the supported methods. Unlike Java, Scala allows traits to be partially implemented; i.e. it is possible to define default implementations for some methods. In contrast to classes, traits may not have constructor parameterss.

Akcije #33

Izmjenjeno od Ernad Husremović prije skoro 15 godina

scala + pivot for ERP ?

ovo mi izgleda poprilično smislena kombinacija

Akcije #36

Izmjenjeno od Ernad Husremović prije skoro 15 godina

cucumber for jvm

Cucumber support for the JVM: Java, Scala, Groovy, Clojure, Ioke, Javascript, Spring, Guice, PicoContainer, WebDriver, Ant and Maven — Read more
Save cancel

http://wiki.github.com/aslakhellesoy/cuke4duke

Akcije #37

Izmjenjeno od Ernad Husremović prije skoro 15 godina

scaja jruby integration

Scuby is a thin integration layer between Scala and JRuby. It aims to provide DSLs for Scala and JRuby to ease interoperability. The original inspiration came from a couple of articles published by Daniel Spiewak at his blog,
http://www.codecommit.com. These are the two articles:

JRuby Interop DSL in Scala (http://www.codecommit.com/blog/ruby/jruby-interop-dsl-in-scala)
Integrating Scala into JRuby (http://www.codecommit.com/blog/ruby/integrating-scala-into-jruby)

The idea behind the architecture came about based on a post by Ola Bini called "Fractal Programming" (http://olabini.com/blog/2008/06/fractal-programming/) in which he talks about dividing a program in 3 layers: the static layer for performance-critical functionality and those functions in which type safety is paramount, a dynamic layer where you create a DSL, and a DSL layer where the bulk of the business logic resides.

Scuby was first publicly presented at the 2009 RubyConf, in the talk "Ruby is from Mars, Functional Languages are from Venus: Integrating Ruby with Erlang,Scala or F#" by Angela O.K. Wright.

Akcije #38

Izmjenjeno od Ernad Husremović prije skoro 15 godina

Akcije #39

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://github.com/pk11/pinky

Pinky is a Scala REST/MVC glue web framework built on top of Guice and Guice Servlet 2.0.

Features
  • No custom template language
  • (almost) No XML configuration
  • URL/template mapping is convention based but can be easily overwritten
  • Form generator/validator
  • Jdbc helper
  • akka integration
  • scheduler for akka jobs
  • comet integration (based on jetty7 continuation , note it does not require a jetty container though)
  • Out of the box support for the following representations:
    • XML (via xstream or scala)
    • JSON (via xstream or json lib)
    • RSS 2.0
    • FreeMarker
    • Velocity
    • Controllers are plain old servlets
  • Filters are implemented as plain old filters
  • Filters/Servlet creation and mapping are managed by Guice
  • Out of the box support for REST via managed servlets
  • AOP support for servlet/filters and for regular components (via Guice)
  • No learning curve (we are dealing with plain old servlets/filters after all)
  • Dependency injection (powered by Guice)
  • Scoped components ie Request, Session, custom scopes (powered by Guice)
  • Ease access to other Guice modules like warp-persist for db persistance
  • Easy access to Request/Response objects
  • Easy to integrate with existing projects (thanks to servlets)
  • Easy to extend
  • new API to deal with jdbc
  • support for form generation and validation
Akcije #40

Izmjenjeno od Ernad Husremović prije skoro 15 godina

liftweb na osnnovu liftbook

bringout@desk-c2:~/devel/git/upstream/liftbook/example1$ mvn archetype:generate -U -DarchetypeGroupId=net.liftweb -DarchetypeArtifactId=lift-archetype-blank -DarchetypeVersion=1.0 -DremoteRepositories=http://scala-tools.org/repo-releases -DgroupId=demo.helloworld -DartifactId=helloworld -Dversion=1.0-SNAPSHOT

Akcije #41

Izmjenjeno od Ernad Husremović prije skoro 15 godina

[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'archetype'.
[INFO] org.jvnet.hudson.tools: checking for updates from java.net2
[INFO] org.jvnet.hudson.tools: checking for updates from central
[INFO] org.apache.maven.plugins: checking for updates from java.net2
[INFO] org.apache.maven.plugins: checking for updates from central
[INFO] org.codehaus.mojo: checking for updates from java.net2
[INFO] org.codehaus.mojo: checking for updates from central
[INFO] artifact org.apache.maven.plugins:maven-archetype-plugin: checking for updates from java.net2
[INFO] artifact org.apache.maven.plugins:maven-archetype-plugin: checking for updates from central
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Default Project
[INFO]    task-segment: [archetype:generate] (aggregator-style)
[INFO] ------------------------------------------------------------------------
[INFO] Preparing archetype:generate
[INFO] No goals needed for project - skipping
[INFO] Setting property: classpath.resource.loader.class => 'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[INFO] Setting property: velocimacro.messages.on => 'false'.
[INFO] Setting property: resource.loader => 'classpath'.
[INFO] Setting property: resource.manager.logwhenfound => 'false'.
[INFO] [archetype:generate {execution: default-cli}]
[INFO] Generating project in Interactive mode
[INFO] Archetype repository missing. Using the one from [net.liftweb:lift-archetype-blank:RELEASE -> http://scala-tools.org/repo-releases] found in catalog internal
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift-archetype-blank/1.0/lift-archetype-blank-1.0.jar
10K downloaded  (lift-archetype-blank-1.0.jar)
Confirm properties configuration:
groupId: demo.helloworld
artifactId: helloworld
version: 1.0-SNAPSHOT
package: demo.helloworld
 Y: : 
[INFO] ----------------------------------------------------------------------------
[INFO] Using following parameters for creating OldArchetype: lift-archetype-blank:1.0
[INFO] ----------------------------------------------------------------------------
[INFO] Parameter: groupId, Value: demo.helloworld
[INFO] Parameter: packageName, Value: demo.helloworld
[INFO] Parameter: package, Value: demo.helloworld
[INFO] Parameter: artifactId, Value: helloworld
[INFO] Parameter: basedir, Value: /home/bringout/devel/git/upstream/liftbook/example1
[INFO] Parameter: version, Value: 1.0-SNAPSHOT
[INFO] ********************* End of debug info from resources from generated POM ***********************
[INFO] OldArchetype created in dir: /home/bringout/devel/git/upstream/liftbook/example1/helloworld
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 47 seconds
[INFO] Finished at: Wed Feb 17 17:33:55 CET 2010
[INFO] Final Memory: 15M/130M
[INFO] ------------------------------------------------------------------------

bringout@desk-c2:~/devel/git/upstream/liftbook/example1$ cd helloworld/
bringout@desk-c2:~/devel/git/upstream/liftbook/example1/helloworld$ ls

pom.xml  src

bringout@desk-c2:~/devel/git/upstream/liftbook/example1/helloworld$ mvn jetty:run

Akcije #42

Izmjenjeno od Ernad Husremović prije skoro 15 godina

[INFO] Scanning for projects...
[INFO] artifact org.scala-tools:maven-scala-plugin: checking for updates from java.net2
[INFO] artifact org.scala-tools:maven-scala-plugin: checking for updates from scala-tools.org
[INFO] artifact org.scala-tools:maven-scala-plugin: checking for updates from central
[INFO] artifact org.mortbay.jetty:maven-jetty-plugin: checking for updates from java.net2
[INFO] artifact org.mortbay.jetty:maven-jetty-plugin: checking for updates from scala-tools.org
[INFO] artifact org.mortbay.jetty:maven-jetty-plugin: checking for updates from central
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.22/maven-jetty-plugin-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/project/6.1.22/project-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:project:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/project/6.1.22/project-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:project:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/project/6.1.22/project-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-parent/8/jetty-parent-8.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-parent:pom:8' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-parent/8/jetty-parent-8.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-parent:pom:8' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-parent/8/jetty-parent-8.pom

Downloading: http://download.java.net/maven/2/org/eclipse/jetty/jetty-parent/9/jetty-parent-9.pom
[INFO] Unable to find resource 'org.eclipse.jetty:jetty-parent:pom:9' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/eclipse/jetty/jetty-parent/9/jetty-parent-9.pom
[INFO] Unable to find resource 'org.eclipse.jetty:jetty-parent:pom:9' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/eclipse/jetty/jetty-parent/9/jetty-parent-9.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/maven-jetty-plugin/6.1.22/maven-jetty-plugin-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:maven-jetty-plugin:maven-plugin:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/maven-jetty-plugin/6.1.22/maven-jetty-plugin-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:maven-jetty-plugin:maven-plugin:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/maven-jetty-plugin/6.1.22/maven-jetty-plugin-6.1.22.jar

[INFO] ------------------------------------------------------------------------
[INFO] Building helloworld
[INFO]    task-segment: [jetty:run]
[INFO] ------------------------------------------------------------------------
[INFO] Preparing jetty:run
[INFO] artifact net.sf.alchim:yuicompressor-maven-plugin: checking for updates from java.net2
[INFO] artifact net.sf.alchim:yuicompressor-maven-plugin: checking for updates from scala-tools.org
[INFO] artifact net.sf.alchim:yuicompressor-maven-plugin: checking for updates from central
Downloading: http://repo1.maven.org/maven2/net/sf/alchim/yuicompressor-maven-plugin/0.7.1/yuicompressor-maven-plugin-0.7.1.pom

Downloading: http://download.java.net/maven/2/net/sf/alchim/alchim-parent/3/alchim-parent-3.pom
[INFO] Unable to find resource 'net.sf.alchim:alchim-parent:pom:3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/sf/alchim/alchim-parent/3/alchim-parent-3.pom
[INFO] Unable to find resource 'net.sf.alchim:alchim-parent:pom:3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/net/sf/alchim/alchim-parent/3/alchim-parent-3.pom

Downloading: http://download.java.net/maven/2/net/sf/alchim/yuicompressor-maven-plugin/0.7.1/yuicompressor-maven-plugin-0.7.1.jar
[INFO] Unable to find resource 'net.sf.alchim:yuicompressor-maven-plugin:maven-plugin:0.7.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/sf/alchim/yuicompressor-maven-plugin/0.7.1/yuicompressor-maven-plugin-0.7.1.jar
[INFO] Unable to find resource 'net.sf.alchim:yuicompressor-maven-plugin:maven-plugin:0.7.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/net/sf/alchim/yuicompressor-maven-plugin/0.7.1/yuicompressor-maven-plugin-0.7.1.jar

[INFO] artifact org.apache.maven.plugins:maven-eclipse-plugin: checking for updates from java.net2
[INFO] artifact org.apache.maven.plugins:maven-eclipse-plugin: checking for updates from scala-tools.org
[INFO] [resources:resources {execution: default-resources}]
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 0 resource
Downloading: http://download.java.net/maven/2/rhino/js/1.6R7/js-1.6R7.pom
[INFO] Unable to find resource 'rhino:js:pom:1.6R7' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/rhino/js/1.6R7/js-1.6R7.pom
[INFO] Unable to find resource 'rhino:js:pom:1.6R7' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://wicketstuff.org/maven/repository//rhino/js/1.6R7/js-1.6R7.pom
[INFO] Unable to find resource 'rhino:js:pom:1.6R7' in repository org.wicketstuff (http://wicketstuff.org/maven/repository/)
Downloading: http://repo1.maven.org/maven2/rhino/js/1.6R7/js-1.6R7.pom

Downloading: http://download.java.net/maven/2/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.pom
[INFO] Unable to find resource 'net.sf.retrotranslator:retrotranslator-runtime:pom:1.2.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.pom
[INFO] Unable to find resource 'net.sf.retrotranslator:retrotranslator-runtime:pom:1.2.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://wicketstuff.org/maven/repository//net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.pom
[INFO] Unable to find resource 'net.sf.retrotranslator:retrotranslator-runtime:pom:1.2.1' in repository org.wicketstuff (http://wicketstuff.org/maven/repository/)
Downloading: http://repo1.maven.org/maven2/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.pom

Downloading: http://download.java.net/maven/2/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.pom
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:pom:3.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.pom
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:pom:3.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://wicketstuff.org/maven/repository//backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.pom
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:pom:3.0' in repository org.wicketstuff (http://wicketstuff.org/maven/repository/)
Downloading: http://download.java.net/maven/2/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.pom
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:pom:3.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.pom
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:pom:3.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.pom

Downloading: http://download.java.net/maven/2/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar
Downloading: http://download.java.net/maven/2/rhino/js/1.6R7/js-1.6R7.jar
Downloading: http://download.java.net/maven/2/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:jar:3.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar
[INFO] Unable to find resource 'rhino:js:jar:1.6R7' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/rhino/js/1.6R7/js-1.6R7.jar
[INFO] Unable to find resource 'net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:jar:3.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://wicketstuff.org/maven/repository//backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar
[INFO] Unable to find resource 'rhino:js:jar:1.6R7' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://wicketstuff.org/maven/repository//rhino/js/1.6R7/js-1.6R7.jar
[INFO] Unable to find resource 'net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://wicketstuff.org/maven/repository//net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:jar:3.0' in repository org.wicketstuff (http://wicketstuff.org/maven/repository/)
Downloading: http://download.java.net/maven/2/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar
[INFO] Unable to find resource 'rhino:js:jar:1.6R7' in repository org.wicketstuff (http://wicketstuff.org/maven/repository/)
Downloading: http://repo1.maven.org/maven2/rhino/js/1.6R7/js-1.6R7.jar
[INFO] Unable to find resource 'net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1' in repository org.wicketstuff (http://wicketstuff.org/maven/repository/)
Downloading: http://repo1.maven.org/maven2/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/retrotranslator-runtime-1.2.1.jar
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:jar:3.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar
[INFO] Unable to find resource 'backport-util-concurrent:backport-util-concurrent:jar:3.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/backport-util-concurrent/backport-util-concurrent/3.0/backport-util-concurrent-3.0.jar

[INFO] [yuicompressor:compress {execution: default}]
[INFO] nb warnings: 0, nb errors: 0
Downloading: http://download.java.net/maven/2/org/scala-lang/scala-library/2.7.3/scala-library-2.7.3.pom
[INFO] Unable to find resource 'org.scala-lang:scala-library:pom:2.7.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/scala-lang/scala-library/2.7.3/scala-library-2.7.3.pom
666b downloaded  (scala-library-2.7.3.pom)
Downloading: http://download.java.net/maven/2/net/liftweb/lift-util/1.0/lift-util-1.0.pom
[INFO] Unable to find resource 'net.liftweb:lift-util:pom:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift-util/1.0/lift-util-1.0.pom
3K downloaded  (lift-util-1.0.pom)
Downloading: http://download.java.net/maven/2/net/liftweb/lift/1.0/lift-1.0.pom
[INFO] Unable to find resource 'net.liftweb:lift:pom:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift/1.0/lift-1.0.pom
12K downloaded  (lift-1.0.pom)
Downloading: http://download.java.net/maven/2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom
[INFO] Unable to find resource 'commons-collections:commons-collections:pom:3.2.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom
[INFO] Unable to find resource 'commons-collections:commons-collections:pom:3.2.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://scala-tools.org/repo-snapshots/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom
[INFO] Unable to find resource 'commons-collections:commons-collections:pom:3.2.1' in repository scala-tools.org.snapshots (http://scala-tools.org/repo-snapshots)
Downloading: http://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom

Downloading: http://download.java.net/maven/2/net/liftweb/lift-webkit/1.0/lift-webkit-1.0.pom
[INFO] Unable to find resource 'net.liftweb:lift-webkit:pom:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift-webkit/1.0/lift-webkit-1.0.pom
4K downloaded  (lift-webkit-1.0.pom)
Downloading: http://download.java.net/maven/2/net/liftweb/lift-mapper/1.0/lift-mapper-1.0.pom
[INFO] Unable to find resource 'net.liftweb:lift-mapper:pom:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift-mapper/1.0/lift-mapper-1.0.pom
3K downloaded  (lift-mapper-1.0.pom)
Downloading: http://download.java.net/maven/2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom
[INFO] Unable to find resource 'javax.servlet:servlet-api:pom:2.5' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom
[INFO] Unable to find resource 'javax.servlet:servlet-api:pom:2.5' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom

[INFO] artifact org.mortbay.jetty:jetty: checking for updates from java.net2
[INFO] artifact org.mortbay.jetty:jetty: checking for updates from scala-tools.org
[INFO] artifact org.mortbay.jetty:jetty: checking for updates from central
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty/6.1.22/jetty-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty/6.1.22/jetty-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty/6.1.22/jetty-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:pom:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jetty-util-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:pom:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:pom:2.5-20081211' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:pom:2.5-20081211' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:pom:2.5-20081211' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/servlet-api-2.5-20081211.pom
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:pom:2.5-20081211' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-parent:pom:7' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-parent:pom:7' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-parent:pom:7' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jetty-parent-7.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-parent:pom:7' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-parent/7/jetty-parent-7.pom

Downloading: http://download.java.net/maven/2/org/scala-lang/scala-compiler/2.7.3/scala-compiler-2.7.3.pom
[INFO] Unable to find resource 'org.scala-lang:scala-compiler:pom:2.7.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/scala-lang/scala-compiler/2.7.3/scala-compiler-2.7.3.pom
838b downloaded  (scala-compiler-2.7.3.pom)
Downloading: http://download.java.net/maven/2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar
Downloading: http://download.java.net/maven/2/net/liftweb/lift-util/1.0/lift-util-1.0.jar
Downloading: http://download.java.net/maven/2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar
Downloading: http://download.java.net/maven/2/org/scala-lang/scala-library/2.7.3/scala-library-2.7.3.jar
[INFO] Unable to find resource 'javax.servlet:servlet-api:jar:2.5' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar
[INFO] Unable to find resource 'commons-collections:commons-collections:jar:3.2.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar
[INFO] Unable to find resource 'net.liftweb:lift-util:jar:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift-util/1.0/lift-util-1.0.jar
[INFO] Unable to find resource 'org.scala-lang:scala-library:jar:2.7.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/scala-lang/scala-library/2.7.3/scala-library-2.7.3.jar
[INFO] Unable to find resource 'javax.servlet:servlet-api:jar:2.5' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar
[INFO] Unable to find resource 'commons-collections:commons-collections:jar:3.2.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://scala-tools.org/repo-snapshots/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar
[INFO] Unable to find resource 'commons-collections:commons-collections:jar:3.2.1' in repository scala-tools.org.snapshots (http://scala-tools.org/repo-snapshots)
Downloading: http://repo1.maven.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar

704K downloaded  (lift-util-1.0.jar)
Downloading: http://download.java.net/maven/2/net/liftweb/lift-webkit/1.0/lift-webkit-1.0.jar
[INFO] Unable to find resource 'net.liftweb:lift-webkit:jar:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift-webkit/1.0/lift-webkit-1.0.jar
2060K downloaded  (lift-webkit-1.0.jar)
Downloading: http://download.java.net/maven/2/net/liftweb/lift-mapper/1.0/lift-mapper-1.0.jar
[INFO] Unable to find resource 'net.liftweb:lift-mapper:jar:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/net/liftweb/lift-mapper/1.0/lift-mapper-1.0.jar
3603K downloaded  (scala-library-2.7.3.jar)
1146K downloaded  (lift-mapper-1.0.jar)
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [scala:compile {execution: default}]
[INFO] Checking for multiple versions of scala
[INFO] includes = [**/*.scala,**/*.java,]
[INFO] excludes = []
[INFO] /home/bringout/devel/git/upstream/liftbook/example1/helloworld/src/main/scala:-1: info: compiling

[INFO] Compiling 2 source files to /home/bringout/devel/git/upstream/liftbook/example1/helloworld/target/classes at 1266424564201
Downloading: http://download.java.net/maven/2/org/scala-lang/scala-compiler/2.7.3/scala-compiler-2.7.3.jar
[INFO] Unable to find resource 'org.scala-lang:scala-compiler:jar:2.7.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/scala-lang/scala-compiler/2.7.3/scala-compiler-2.7.3.jar
6172K downloaded  (scala-compiler-2.7.3.jar)
[INFO] prepare-compile in 0 s
[INFO] compile in 43 s
[INFO] [resources:testResources {execution: default-testResources}]
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 0 resource
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty/6.1.22/jetty-6.1.22.jar

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:jar:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:jar:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:jar:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/jars/jetty-util-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-util:jar:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-util/6.1.22/jetty-util-6.1.22.jar

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:jar:2.5-20081211' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:jar:2.5-20081211' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:jar:2.5-20081211' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/jars/servlet-api-2.5-20081211.jar
[INFO] Unable to find resource 'org.mortbay.jetty:servlet-api:jar:2.5-20081211' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/servlet-api/2.5-20081211/servlet-api-2.5-20081211.jar

[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [scala:testCompile {execution: default}]
[INFO] Checking for multiple versions of scala
[INFO] includes = [**/*.scala,**/*.java,]
[INFO] excludes = []
[INFO] /home/bringout/devel/git/upstream/liftbook/example1/helloworld/src/test/scala:-1: info: compiling

[INFO] Compiling 3 source files to /home/bringout/devel/git/upstream/liftbook/example1/helloworld/target/test-classes at 1266424617364
[INFO] prepare-compile in 0 s
[INFO] compile in 3 s
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-settings/2.0.3/maven-settings-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-settings:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-settings/2.0.3/maven-settings-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-settings:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-settings/2.0.3/maven-settings-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-settings:pom:2.0.3' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.maven/poms/maven-settings-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-settings:pom:2.0.3' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-settings/2.0.3/maven-settings-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-settings:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-settings/2.0.3/maven-settings-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-settings:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-settings/2.0.3/maven-settings-2.0.3.pom

Downloading: http://download.java.net/maven/2/org/apache/maven/maven-model/2.0.3/maven-model-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-model:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-model/2.0.3/maven-model-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-model:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-model/2.0.3/maven-model-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-model:pom:2.0.3' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.maven/poms/maven-model-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-model:pom:2.0.3' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-model/2.0.3/maven-model-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-model:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-model/2.0.3/maven-model-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-model:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-model/2.0.3/maven-model-2.0.3.pom

Downloading: http://download.java.net/maven/2/org/apache/maven/maven-profile/2.0.3/maven-profile-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-profile:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-profile/2.0.3/maven-profile-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-profile:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-profile/2.0.3/maven-profile-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-profile:pom:2.0.3' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.maven/poms/maven-profile-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-profile:pom:2.0.3' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-profile/2.0.3/maven-profile-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-profile:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-profile/2.0.3/maven-profile-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-profile:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-profile/2.0.3/maven-profile-2.0.3.pom

Downloading: http://download.java.net/maven/2/org/apache/maven/maven-artifact-manager/2.0.3/maven-artifact-manager-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-artifact-manager:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-artifact-manager/2.0.3/maven-artifact-manager-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-artifact-manager:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-artifact-manager/2.0.3/maven-artifact-manager-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-artifact-manager:pom:2.0.3' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.maven/poms/maven-artifact-manager-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-artifact-manager:pom:2.0.3' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-artifact-manager/2.0.3/maven-artifact-manager-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-artifact-manager:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-artifact-manager/2.0.3/maven-artifact-manager-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-artifact-manager:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-artifact-manager/2.0.3/maven-artifact-manager-2.0.3.pom

Downloading: http://download.java.net/maven/2/org/apache/maven/maven-repository-metadata/2.0.3/maven-repository-metadata-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-repository-metadata:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-repository-metadata/2.0.3/maven-repository-metadata-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-repository-metadata:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-repository-metadata/2.0.3/maven-repository-metadata-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-repository-metadata:pom:2.0.3' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.maven/poms/maven-repository-metadata-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-repository-metadata:pom:2.0.3' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/maven/maven-repository-metadata/2.0.3/maven-repository-metadata-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-repository-metadata:pom:2.0.3' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/maven/maven-repository-metadata/2.0.3/maven-repository-metadata-2.0.3.pom
[INFO] Unable to find resource 'org.apache.maven:maven-repository-metadata:pom:2.0.3' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/maven/maven-repository-metadata/2.0.3/maven-repository-metadata-2.0.3.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:pom:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jetty-plus-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:pom:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:pom:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jetty-naming-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:pom:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:pom:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jetty-management-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:pom:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:pom:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jsp-2.1-jetty-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:pom:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-jsp/9.1.1.B60.25.p2/jetty-jsp-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-jsp:pom:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-jsp/9.1.1.B60.25.p2/jetty-jsp-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-jsp:pom:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-jsp/9.1.1.B60.25.p2/jetty-jsp-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-jsp:pom:9.1.1.B60.25.p2' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jetty-jsp-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-jsp:pom:9.1.1.B60.25.p2' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-jsp/9.1.1.B60.25.p2/jetty-jsp-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-jsp:pom:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-jsp/9.1.1.B60.25.p2/jetty-jsp-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-jsp:pom:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-jsp/9.1.1.B60.25.p2/jetty-jsp-9.1.1.B60.25.p2.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jsp-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-glassfish:pom:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-annotations/6.1.22/jetty-annotations-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-annotations:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-annotations/6.1.22/jetty-annotations-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-annotations:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-annotations/6.1.22/jetty-annotations-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-annotations:pom:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/jetty-annotations-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-annotations:pom:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-annotations/6.1.22/jetty-annotations-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:pom:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:pom:1.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:pom:1.0' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.geronimo.specs/poms/geronimo-annotation_1.0_spec-1.0.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:pom:1.0' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:pom:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:pom:1.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.pom

Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:specs:pom:1.2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:specs:pom:1.2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:specs:pom:1.2' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.geronimo.specs/poms/specs-1.2.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:specs:pom:1.2' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:specs:pom:1.2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom
[INFO] Unable to find resource 'org.apache.geronimo.specs:specs:pom:1.2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/geronimo/specs/specs/1.2/specs-1.2.pom

Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:project-config:pom:1.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:project-config:pom:1.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:project-config:pom:1.1' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.geronimo.genesis.config/poms/project-config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:project-config:pom:1.1' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:project-config:pom:1.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:project-config:pom:1.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/geronimo/genesis/config/project-config/1.1/project-config-1.1.pom

Downloading: http://people.apache.org/repo/m2-incubating-repository//org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository apache-incubator (http://people.apache.org/repo/m2-incubating-repository/)
Downloading: http://repository.codehaus.org/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository codehaus (http://repository.codehaus.org)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.geronimo.genesis.config/poms/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis.config:config:pom:1.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/geronimo/genesis/config/config/1.1/config-1.1.pom

Downloading: http://people.apache.org/repo/m2-incubating-repository//org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository apache-incubator (http://people.apache.org/repo/m2-incubating-repository/)
Downloading: http://repository.codehaus.org/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository codehaus (http://repository.codehaus.org)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.geronimo.genesis/poms/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom
[INFO] Unable to find resource 'org.apache.geronimo.genesis:genesis:pom:1.1' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/geronimo/genesis/genesis/1.1/genesis-1.1.pom

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/start/6.1.22/start-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:start:pom:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/start/6.1.22/start-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:start:pom:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/start/6.1.22/start-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:start:pom:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/poms/start-6.1.22.pom
[INFO] Unable to find resource 'org.mortbay.jetty:start:pom:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/start/6.1.22/start-6.1.22.pom

Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.jar
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.jar
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:jar:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.jar
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:jar:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.jar
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.apache.geronimo.specs/jars/geronimo-annotation_1.0_spec-1.0.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:jar:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/jars/jetty-plus-6.1.22.jar
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-plus:jar:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-plus/6.1.22/jetty-plus-6.1.22.jar
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.jar
[INFO] Unable to find resource 'org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.0/geronimo-annotation_1.0_spec-1.0.jar

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:jar:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:jar:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.jar

[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:jar:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/jars/jetty-naming-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-naming:jar:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-naming/6.1.22/jetty-naming-6.1.22.jar

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:jar:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:jar:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:jar:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/jars/jetty-management-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jetty-management:jar:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jetty-management/6.1.22/jetty-management-6.1.22.jar

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:jar:6.1.22' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:jar:6.1.22' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:jar:6.1.22' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/jars/jsp-2.1-jetty-6.1.22.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-jetty:jar:6.1.22' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jsp-2.1-jetty/6.1.22/jsp-2.1-jetty-6.1.22.jar

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:jar:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:jar:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:jar:9.1.1.B60.25.p2' in repository java.net (http://download.java.net/maven/2)
Downloading: http://download.java.net/maven/1/org.mortbay.jetty/jars/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:jar:9.1.1.B60.25.p2' in repository m1.java.net (http://download.java.net/maven/1)
Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:jar:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Downloading: http://scala-tools.org/repo-releases/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-api-2.1-glassfish:jar:9.1.1.B60.25.p2' in repository scala-tools.org (http://scala-tools.org/repo-releases)
Downloading: http://repo1.maven.org/maven2/org/mortbay/jetty/jsp-api-2.1-glassfish/9.1.1.B60.25.p2/jsp-api-2.1-glassfish-9.1.1.B60.25.p2.jar

Downloading: http://download.java.net/maven/2/org/mortbay/jetty/jsp-2.1-glassfish/9.1.1.B60.25.p2/jsp-2.1-glassfish-9.1.1.B60.25.p2.jar
[INFO] Unable to find resource 'org.mortbay.jetty:jsp-2.1-glassfish:jar:9.1.1.B60.25.p2' in repository java.net2 (http://download.java.net/maven/2)
Akcije #43

Izmjenjeno od Ernad Husremović prije skoro 15 godina

Akcije #45

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://code.google.com/p/specs/

a BDD library for Scala

Akcije #46

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://wiki.github.com/hseeberger/scala-lang-osgi/

The “official” Scala libraries (scala-lang.jar, scala-swing.jar, etc.) are not (yet) delivered as OSGi bundles. There is an Eclipse plug-in which is part of the Scala IDE for Eclipse which basically is an OSGi bundle, but it is an all-in-one bundle (assembles scala-*.jar) and – very important – contains a special bundle manifest that is not-so-good for general purpose.

scala-lang-osgi contains projects which deliver OSGi bundles for each Scala library. No changes are made to the libraries themselves but only the necessary manifest headers are added to the MANIFEST.MF file.

All OSGi-fied Scala libraries are deployed to the scala-tools.org Maven repository with group id org.scala-lang-osgi using the same artifact id and version as the non-OSGi Scala libraries (e.g. scala-library, scala-swing, etc.). Of course there is also a snapshot repository.

Akcije #47

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://code.google.com/p/simple-build-tool/

sbt is a simple build tool for Scala projects that aims to do the basics well. It requires Java 1.5 or later.

Features

  • Fairly fast, unintrusive, and easy to set up for simple projects
  • Configuration is done in Scala
  • The default source directory layout is the same as maven's so you can always switch to maven should you need/want to
  • Regardless of what sources you have added, changed, or removed, sbt should (in theory) recompile the right sources using information extracted from compilation with a compiler plugin
  • Continuous compilation, supports mixed Scala/Java projects
  • Supports ScalaCheck, specs, and ScalaTest.
  • Can generate documentation with scaladoc
  • Packages jars (classes, sources, or api docs)
  • Can start the Scala interpreter with the right classpath (dependencies and compiled classes)
  • Multiple project/subproject support
  • Parallel task execution, including parallel test execution
  • Dependency management support: basic inline declarations, configuration with Maven (partial support) or Ivy, or manual management.

programming in scala book review

Akcije #54

Izmjenjeno od Ernad Husremović prije skoro 15 godina

intelij jetbrains

bringout@desk-c2:~/devel/git/upstream/idea-community$ export JAVA_OPTS="-Xms512m -Xmx4096m"
bringout@desk-c2:~/devel/git/upstream/idea-community$ ~/devel/idea-IC-93.94/bin/idea.sh

http://www.caucho.com/resin-3.0/performance/jvm-tuning.xtp

? outofmemory heap ?

Akcije #55

Izmjenjeno od Ernad Husremović prije skoro 15 godina

xport JVM_ARGS='-Xms512m -Xmx4096m'

Akcije #58

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://mindprod.com/jgloss/intellij.html

bringout@desk-c2:~/devel/git/upstream/idea-community$ cat ~/devel/idea-IC-93.94/bin/idea.vmoptions

-Xms128m
-Xmx800m
-XX:MaxPermSize=400m
-ea

Akcije #59

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://eclipse.dzone.com/news/what-java-ide-vm-arguments-do-you-use

-XX:+UseParallelGC
-XX:MaxPermSize=256m
-ea
Akcije #60

Izmjenjeno od Ernad Husremović prije skoro 15 godina

I've played around extensively with different settings (I know this is an old thread, but for those who get here via web searches like I just did...). Here's some settings I have settled on, running IntelliJ with jdk 1.6.0.11:

-server -Xms256m -Xmx1024m -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+ExplicitGCInvokesConcurrent -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled -XX:MaxPermSize=200m -XX:+AggressiveOpts -Dawt.useSystemAAFontSettings=lcd -ea

Obviously my usage of the server VM does not optimize for the start-up time of the JVM, but, I keep the IDE open all week, I'd rather have it perform well over time than optimize the start up time. The client VM is great for when you don't care about the performance of the app--I expect most developers don't feel that way about their IDE.

Also, I default the min heap size to something larger than the default b/c I find the JVM is a little too aggressive in keeping the heap size down, it impacts performance adversely if I do not set a minimum size to something palatable.

Akcije #61

Izmjenjeno od Ernad Husremović prije skoro 15 godina

hah i na kraju IDE ima svoj settings compiler-a (heap size) File/Settings ... http://www.jetbrains.net/devnet/thread/280623

Akcije #62

Izmjenjeno od Ernad Husremović prije skoro 15 godina

Simple Scala Blog

A lightweight blogging system, designed to transmute a directory of Textile files into an equivalent directory of HTML files with a minimum of fuss.
Rationalization

Writing a custom blogging system is a wholly unnecessary act. This system was written so the author could muck about with Scala. Though there’s some basic attempt at providing a configuration mechanism, templates and logic are currently too intertwined. Improving this is an exercise for the reader/forker.

You’re encouraged to borrow chunks of code you fancy. The good parts are mostly the use of XML literals. You might find the FileHelpers trait handy, as it provides easy-to-use methods for stuff that should really be in java.io.File or similar.

blog o scala-i http://www.scalaprogrammer.com/

Akcije #63

Izmjenjeno od Ernad Husremović prije skoro 15 godina

twitter scala developer: http://gracelessfailures.com/

Akcije #69

Izmjenjeno od Ernad Husremović prije skoro 15 godina

pročitao i ovu infoq prezentaciju ... scala stvarno ima sve što trebamo i pride ...

Akcije #70

Izmjenjeno od Ernad Husremović prije skoro 15 godina

predvaač na github-u http://github.com/jboner

http://github.com/jboner/akka

Akka

We believe that writing correct concurrent, fault-tolerant and scalable applications is too hard. Most of the time it’s because we are using the wrong tools and the wrong level of abstraction.

Akka is here to change that.

Using the Actor Model together with Software Transactional Memory we raise the abstraction level and provides a better platform to build correct concurrent and scalable applications.

For fault-tolerance we adopt the "Let it crash" / "Embrace failure" model which have been used with great success in the telecom industry to build applications that self-heals, systems that never stop.

Actors also provides the abstraction for transparent distribution and the basis for truly scalable and fault-tolerant applications.

Akka is Open Source and available under the Apache 2 License.

Akcije #74

Izmjenjeno od Ernad Husremović prije skoro 15 godina

još jedna infoq prezentacija Scala: Bringing Future Languages to the JVM, mart 2008, Lex Spoon je dio Scala core tima

Akcije #75

Izmjenjeno od Ernad Husremović prije skoro 15 godina

43 minute prezentacija traje, nekom drugom prilikom

Akcije #82

Izmjenjeno od Ernad Husremović prije skoro 15 godina

http://code.google.com/p/scala-migrations/

Scala Migrations is a library to manage upgrades and rollbacks to database schemas. Migrations allow a source control system to manage together the database schema and the code using the schema. It is designed to allow multiple developers working on a project with a database backend to design schema modifications independently, apply the migrations to their local database for debugging and when complete, check them into a source control system to manage as one manages normal source code. Other developers then check out the new migrations and apply them to their local database. Finally, the migrations are used to migrate the production databases to the latest schema version.

The Scala Migrations library is written in Scala and makes use of the clean Scala language to write easy to understand migrations, which are also written in Scala. Scala Migrations provides a database abstraction layer that allows migrations to target any supported database vendor.

Akcije #94

Izmjenjeno od Ernad Husremović prije više od 14 godina

  • Status promijenjeno iz Novo u Zatvoreno
Akcije

Također dostupno kao Atom PDF