Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: 1.2-M4
-
Fix Version/s: 1.2 final
-
Component/s: None
-
Labels:None
Description
I'm still trying to build the Grails Spock Plugin with Maven, this time with Grails 1.2-SNAPSHOT. There are two problems:
1. Build downloads Grails 1.2-M4 artifacts although M4 is mentioned nowhere in the POM and also doesn't appear in output of mvn dependency:tree
2. Installation of Hibernate plugin fails. This is on an Ubuntu box with platform encoding UTF-8. I'm out of ideas, couldn't find a way to solve this problem. Here are the POM and the (long) build output. (I don't have this problem on my Mac.)
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.spockframework</groupId>
<artifactId>spock-parent</artifactId>
<version>0.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.spockframework</groupId>
<artifactId>spock-grails</artifactId>
<version>0.3-SNAPSHOT</version>
<!-- grails-maven-plugin seem to require this -->
<packaging>pom</packaging>
<name>Spock Framework - Grails Plugin</name>
<url>http://grails.org/plugin/spock</url>
<properties>
<grails.version>1.2-SNAPSHOT</grails.version>
</properties>
<dependencies>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-junit</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-crud</artifactId>
<version>${grails.version}</version>
</dependency>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-gorm</artifactId>
<version>${grails.version}</version>
</dependency>
<dependency>
<groupId>org.grails</groupId>
<artifactId>grails-test</artifactId>
<version>${grails.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.6</version>
<exclusions>
<exclusion> <!-- see GROOVY-3356; xml-apis and JDK 1.6 ship with different versions of the same classes -->
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.21</version>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.4.GA</version>
<optional>true</optional>
</dependency>
<!-- Grails defaults to OSCache for the second-level Hibernate cache. -->
<dependency>
<groupId>opensymphony</groupId>
<artifactId>oscache</artifactId>
<version>2.4</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- For ease of development and testing, we include the HSQLDB database. -->
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.5</version>
</dependency>
<!-- Use Log4J for logging. This artifact also pulls in the Log4J JAR. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.tmatesoft.svnkit</groupId>
<artifactId>svnkit</artifactId>
<version>1.3.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<repositories>
<!-- Required to get hold of JTA -->
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
<repository>
<id>Codehaus Snapshots</id>
<url>http://snapshots.repository.codehaus.org</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<!-- Spring 3.0.0.RC1 JAR Repositories -->
<repository>
<id>springsource maven repo</id>
<url>http://maven.springframework.org/milestone</url>
</repository>
<repository>
<id>SpringSource Enterprise Bundle Repository - External Bundle Milestones</id>
<url>http://repository.springsource.com/maven/bundles/milestone</url>
</repository>
<repository>
<id>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</id>
<url>http://repository.springsource.com/maven/bundles/release</url>
</repository>
<repository>
<id>SpringSource Enterprise Bundle Repository - External Bundle Releases</id>
<url>http://repository.springsource.com/maven/bundles/external</url>
</repository>
<repository>
<id>SpringSource Enterprise Bundle Repository - Library Milestones</id>
<url>http://repository.springsource.com/maven/libraries/milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>Codehaus Snapshots</id>
<url>http://snapshots.repository.codehaus.org</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<build>
<sourceDirectory>src/groovy</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.grails</groupId>
<artifactId>grails-maven-plugin</artifactId>
<version>${grails.version}</version>
<extensions>true</extensions>
<executions>
<execution>
<id>build</id>
<goals>
<goal>init</goal>
<goal>maven-clean</goal>
<goal>validate</goal>
<goal>config-directories</goal>
<goal>maven-compile</goal>
<goal>maven-test</goal>
<goal>maven-functional-test</goal>
</goals>
</execution>
<execution>
<id>package-plugin</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<command>package-plugin</command>
</configuration>
</execution>
<execution>
<id>release-plugin</id>
<phase>deploy</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<command>release-plugin</command>
<args>--zipOnly --username=${grails.plugin.repo.user} --password=${grails.plugin.repo.password}
--message="nightly build"
</args>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>tools</id>
<activation>
<property>
<name>java.vendor</name>
<value>Sun Microsystems Inc.</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>${java.version}</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
srv% mvn clean install
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building Spock Framework - Grails Plugin
[INFO] task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting file set: /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/target (included: [**], excluded: [])
[INFO] snapshot org.spockframework:spock-core:0.3-SNAPSHOT: checking for updates from maven2-repository.dev.java.net
[INFO] snapshot org.spockframework:spock-core:0.3-SNAPSHOT: checking for updates from Codehaus Snapshots
[INFO] snapshot org.spockframework:spock-core:0.3-SNAPSHOT: checking for updates from springsource maven repo
[INFO] snapshot org.spockframework:spock-core:0.3-SNAPSHOT: checking for updates from SpringSource Enterprise Bundle Repository - External Bundle Milestones
[INFO] snapshot org.spockframework:spock-core:0.3-SNAPSHOT: checking for updates from SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases
[INFO] snapshot org.spockframework:spock-core:0.3-SNAPSHOT: checking for updates from SpringSource Enterprise Bundle Repository - External Bundle Releases
[INFO] snapshot org.spockframework:spock-core:0.3-SNAPSHOT: checking for updates from SpringSource Enterprise Bundle Repository - Library Milestones
[INFO] [grails:maven-clean {execution: build}]
[INFO] Using Grails 1.2-SNAPSHOT
Running pre-compiled script
Environment set to development
[delete] Deleting directory /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/target/resources
[INFO] [grails:validate {execution: build}]
[INFO] [grails:init {execution: build}]
[INFO] [grails:config-directories {execution: build}]
[INFO] [grails:maven-compile {execution: build}]
[INFO] Using Grails 1.2-SNAPSHOT
Running pre-compiled script
Warning, target causing name overwriting of name compile
Warning, target causing name overwriting of name compilePlugins
Warning, target causing name overwriting of name compilepackage
Warning, target causing name overwriting of name compilegsp
Plugin [tomcat-1.2-SNAPSHOT] not installed, resolving..
Reading remote plugin list ...
[mkdir] Created dir: /home/buildagent1/.grails/1.2-SNAPSHOT
[get] Getting: http://svn.codehaus.org/grails/trunk/grails-plugins/.plugin-meta/plugins-list.xml
[get] To: /home/buildagent1/.grails/1.2-SNAPSHOT/plugins-list-core.xml
.....
[get] last modified = Tue Nov 10 15:33:05 CET 2009
[mkdir] Created dir: /home/buildagent1/.grails/1.2-SNAPSHOT/plugins
[get] Getting: http://svn.codehaus.org/grails/trunk/grails-plugins/grails-tomcat/tags/RELEASE_1_2-SNAPSHOT/grails-tomcat-1.2-SNAPSHOT.zip
[get] To: /home/buildagent1/.grails/1.2-SNAPSHOT/plugins/grails-tomcat-1.2-SNAPSHOT.zip
...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
[get] last modified = Tue Nov 10 15:32:13 CET 2009
[copy] Copying 1 file to /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins
Installing plug-in tomcat-1.2-SNAPSHOT
[mkdir] Created dir: /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT
[unzip] Expanding: /home/buildagent1/.grails/1.2-SNAPSHOT/plugins/grails-tomcat-1.2-SNAPSHOT.zip into /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT
Executing tomcat-1.2-SNAPSHOT plugin post-install script ...
Plugin tomcat-1.2-SNAPSHOT installed
Plug-in provides the following new scripts:
------------------------------------------
grails tomcat
Found events script in plugin tomcat
Plugin [hibernate-1.2-SNAPSHOT] not installed, resolving..
Reading remote plugin list ...
[get] Getting: http://svn.codehaus.org/grails/trunk/grails-plugins/grails-hibernate/tags/RELEASE_1_2-SNAPSHOT/grails-hibernate-1.2-SNAPSHOT.zip
[get] To: /home/buildagent1/.grails/1.2-SNAPSHOT/plugins/grails-hibernate-1.2-SNAPSHOT.zip
....................
[get] last modified = Wed Sep 30 10:07:20 CEST 2009
[copy] Copying 1 file to /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins
Installing plug-in hibernate-1.2-SNAPSHOT
[mkdir] Created dir: /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT
[unzip] Expanding: /home/buildagent1/.grails/1.2-SNAPSHOT/plugins/grails-hibernate-1.2-SNAPSHOT.zip into /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT
Resolving plugin JAR dependencies
:: problems summary ::
:::: WARNINGS
module not found: org.springframework#org.springframework.core;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.core;3.0.0.RC1!org.springframework.core.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.core;3.0.0.RC1!org.springframework.core.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.core;3.0.0.RC1!org.springframework.core.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.core;3.0.0.RC1!org.springframework.core.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.core;3.0.0.RC1!org.springframework.core.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.core/3.0.0.RC1/org.springframework.core-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.core;3.0.0.RC1!org.springframework.core.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.core-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.core-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.aop;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.aop;3.0.0.RC1!org.springframework.aop.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aop;3.0.0.RC1!org.springframework.aop.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aop;3.0.0.RC1!org.springframework.aop.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aop;3.0.0.RC1!org.springframework.aop.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aop;3.0.0.RC1!org.springframework.aop.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.aop/3.0.0.RC1/org.springframework.aop-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.aop;3.0.0.RC1!org.springframework.aop.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.aop-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.aop-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.aspects;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.aspects;3.0.0.RC1!org.springframework.aspects.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aspects;3.0.0.RC1!org.springframework.aspects.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aspects;3.0.0.RC1!org.springframework.aspects.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aspects;3.0.0.RC1!org.springframework.aspects.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.aspects;3.0.0.RC1!org.springframework.aspects.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.aspects/3.0.0.RC1/org.springframework.aspects-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.aspects;3.0.0.RC1!org.springframework.aspects.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.aspects-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.aspects-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.asm;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.asm;3.0.0.RC1!org.springframework.asm.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.asm;3.0.0.RC1!org.springframework.asm.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.asm;3.0.0.RC1!org.springframework.asm.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.asm;3.0.0.RC1!org.springframework.asm.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.asm;3.0.0.RC1!org.springframework.asm.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.asm/3.0.0.RC1/org.springframework.asm-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.asm;3.0.0.RC1!org.springframework.asm.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.asm-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.asm-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.beans;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.beans;3.0.0.RC1!org.springframework.beans.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.beans;3.0.0.RC1!org.springframework.beans.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.beans;3.0.0.RC1!org.springframework.beans.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.beans;3.0.0.RC1!org.springframework.beans.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.beans;3.0.0.RC1!org.springframework.beans.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.beans/3.0.0.RC1/org.springframework.beans-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.beans;3.0.0.RC1!org.springframework.beans.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.beans-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.beans-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.context;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.context;3.0.0.RC1!org.springframework.context.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context;3.0.0.RC1!org.springframework.context.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context;3.0.0.RC1!org.springframework.context.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context;3.0.0.RC1!org.springframework.context.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context;3.0.0.RC1!org.springframework.context.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.context/3.0.0.RC1/org.springframework.context-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.context;3.0.0.RC1!org.springframework.context.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.context-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.context-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.context.support;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.context.support;3.0.0.RC1!org.springframework.context.support.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context.support;3.0.0.RC1!org.springframework.context.support.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context.support;3.0.0.RC1!org.springframework.context.support.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context.support;3.0.0.RC1!org.springframework.context.support.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.context.support;3.0.0.RC1!org.springframework.context.support.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.context.support/3.0.0.RC1/org.springframework.context.support-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.context.support;3.0.0.RC1!org.springframework.context.support.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.context.support-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.context.support-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.expression;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.expression;3.0.0.RC1!org.springframework.expression.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.expression;3.0.0.RC1!org.springframework.expression.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.expression;3.0.0.RC1!org.springframework.expression.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.expression;3.0.0.RC1!org.springframework.expression.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.expression;3.0.0.RC1!org.springframework.expression.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.expression/3.0.0.RC1/org.springframework.expression-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.expression;3.0.0.RC1!org.springframework.expression.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.expression-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.expression-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.instrument;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.instrument;3.0.0.RC1!org.springframework.instrument.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.instrument;3.0.0.RC1!org.springframework.instrument.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.instrument;3.0.0.RC1!org.springframework.instrument.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.instrument;3.0.0.RC1!org.springframework.instrument.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.instrument;3.0.0.RC1!org.springframework.instrument.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.instrument/3.0.0.RC1/org.springframework.instrument-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.instrument;3.0.0.RC1!org.springframework.instrument.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.instrument-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.instrument-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.jdbc;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.jdbc;3.0.0.RC1!org.springframework.jdbc.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jdbc;3.0.0.RC1!org.springframework.jdbc.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jdbc;3.0.0.RC1!org.springframework.jdbc.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jdbc;3.0.0.RC1!org.springframework.jdbc.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jdbc;3.0.0.RC1!org.springframework.jdbc.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.jdbc/3.0.0.RC1/org.springframework.jdbc-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.jdbc;3.0.0.RC1!org.springframework.jdbc.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.jdbc-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.jdbc-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.jms;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.jms;3.0.0.RC1!org.springframework.jms.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jms;3.0.0.RC1!org.springframework.jms.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jms;3.0.0.RC1!org.springframework.jms.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jms;3.0.0.RC1!org.springframework.jms.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.jms;3.0.0.RC1!org.springframework.jms.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.jms/3.0.0.RC1/org.springframework.jms-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.jms;3.0.0.RC1!org.springframework.jms.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.jms-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.jms-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.orm;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.orm;3.0.0.RC1!org.springframework.orm.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.orm;3.0.0.RC1!org.springframework.orm.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.orm;3.0.0.RC1!org.springframework.orm.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.orm;3.0.0.RC1!org.springframework.orm.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.orm;3.0.0.RC1!org.springframework.orm.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.orm/3.0.0.RC1/org.springframework.orm-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.orm;3.0.0.RC1!org.springframework.orm.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.orm-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.orm-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.oxm;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.oxm;3.0.0.RC1!org.springframework.oxm.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.oxm;3.0.0.RC1!org.springframework.oxm.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.oxm;3.0.0.RC1!org.springframework.oxm.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.oxm;3.0.0.RC1!org.springframework.oxm.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.oxm;3.0.0.RC1!org.springframework.oxm.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.oxm/3.0.0.RC1/org.springframework.oxm-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.oxm;3.0.0.RC1!org.springframework.oxm.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.oxm-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.oxm-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.transaction;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.transaction;3.0.0.RC1!org.springframework.transaction.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.transaction;3.0.0.RC1!org.springframework.transaction.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.transaction;3.0.0.RC1!org.springframework.transaction.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.transaction;3.0.0.RC1!org.springframework.transaction.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.transaction;3.0.0.RC1!org.springframework.transaction.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.transaction/3.0.0.RC1/org.springframework.transaction-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.transaction;3.0.0.RC1!org.springframework.transaction.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.transaction-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.transaction-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.web;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.web;3.0.0.RC1!org.springframework.web.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web;3.0.0.RC1!org.springframework.web.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web;3.0.0.RC1!org.springframework.web.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web;3.0.0.RC1!org.springframework.web.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web;3.0.0.RC1!org.springframework.web.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.web/3.0.0.RC1/org.springframework.web-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.web;3.0.0.RC1!org.springframework.web.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.web-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.web-3.0.0.RC1.jar
module not found: org.springframework#org.springframework.web.servlet;3.0.0.RC1
==== localMavenResolver: tried
-- artifact org.springframework#org.springframework.web.servlet;3.0.0.RC1!org.springframework.web.servlet.jar:
/home/buildagent1/.m2/repository/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web.servlet;3.0.0.RC1!org.springframework.web.servlet.jar:
http://repo1.maven.org/maven2/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web.servlet;3.0.0.RC1!org.springframework.web.servlet.jar:
http://m2repo.spockframework.org/snapshots/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web.servlet;3.0.0.RC1!org.springframework.web.servlet.jar:
http://m2repo.spockframework.org/releases/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.pom
-- artifact org.springframework#org.springframework.web.servlet;3.0.0.RC1!org.springframework.web.servlet.jar:
http://oss.sonatype.org/content/groups/jetty/org/springframework/org.springframework.web.servlet/3.0.0.RC1/org.springframework.web.servlet-3.0.0.RC1.jar
==== grailsPlugins: tried
-- artifact org.springframework#org.springframework.web.servlet;3.0.0.RC1!org.springframework.web.servlet.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/org.springframework.web.servlet-3.0.0.RC1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/org.springframework.web.servlet-3.0.0.RC1.jar
module not found: opensymphony#oscache;2.4.1
==== localMavenResolver: tried
-- artifact opensymphony#oscache;2.4.1!oscache.jar:
/home/buildagent1/.m2/repository/opensymphony/oscache/2.4.1/oscache-2.4.1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/opensymphony/oscache/2.4.1/oscache-2.4.1.pom
-- artifact opensymphony#oscache;2.4.1!oscache.jar:
http://repo1.maven.org/maven2/opensymphony/oscache/2.4.1/oscache-2.4.1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/opensymphony/oscache/2.4.1/oscache-2.4.1.pom
-- artifact opensymphony#oscache;2.4.1!oscache.jar:
http://m2repo.spockframework.org/snapshots/opensymphony/oscache/2.4.1/oscache-2.4.1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/opensymphony/oscache/2.4.1/oscache-2.4.1.pom
-- artifact opensymphony#oscache;2.4.1!oscache.jar:
http://m2repo.spockframework.org/releases/opensymphony/oscache/2.4.1/oscache-2.4.1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/opensymphony/oscache/2.4.1/oscache-2.4.1.pom
-- artifact opensymphony#oscache;2.4.1!oscache.jar:
http://oss.sonatype.org/content/groups/jetty/opensymphony/oscache/2.4.1/oscache-2.4.1.jar
==== grailsPlugins: tried
-- artifact opensymphony#oscache;2.4.1!oscache.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/oscache-2.4.1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/oscache-2.4.1.jar
module not found: apache-taglibs#standard;1.1.2
==== localMavenResolver: tried
-- artifact apache-taglibs#standard;1.1.2!standard.jar:
/home/buildagent1/.m2/repository/apache-taglibs/standard/1.1.2/standard-1.1.2.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/apache-taglibs/standard/1.1.2/standard-1.1.2.pom
-- artifact apache-taglibs#standard;1.1.2!standard.jar:
http://repo1.maven.org/maven2/apache-taglibs/standard/1.1.2/standard-1.1.2.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/apache-taglibs/standard/1.1.2/standard-1.1.2.pom
-- artifact apache-taglibs#standard;1.1.2!standard.jar:
http://m2repo.spockframework.org/snapshots/apache-taglibs/standard/1.1.2/standard-1.1.2.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/apache-taglibs/standard/1.1.2/standard-1.1.2.pom
-- artifact apache-taglibs#standard;1.1.2!standard.jar:
http://m2repo.spockframework.org/releases/apache-taglibs/standard/1.1.2/standard-1.1.2.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/apache-taglibs/standard/1.1.2/standard-1.1.2.pom
-- artifact apache-taglibs#standard;1.1.2!standard.jar:
http://oss.sonatype.org/content/groups/jetty/apache-taglibs/standard/1.1.2/standard-1.1.2.jar
==== grailsPlugins: tried
-- artifact apache-taglibs#standard;1.1.2!standard.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/standard-1.1.2.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/standard-1.1.2.jar
module not found: ${groupId}#hibernate-core;3.3.1.GA
==== localMavenResolver: tried
-- artifact ${groupId}#hibernate-core;3.3.1.GA!hibernate-core.jar:
/home/buildagent1/.m2/repository/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.pom
-- artifact ${groupId}#hibernate-core;3.3.1.GA!hibernate-core.jar:
http://repo1.maven.org/maven2/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.pom
-- artifact ${groupId}#hibernate-core;3.3.1.GA!hibernate-core.jar:
http://m2repo.spockframework.org/snapshots/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.pom
-- artifact ${groupId}#hibernate-core;3.3.1.GA!hibernate-core.jar:
http://m2repo.spockframework.org/releases/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.pom
-- artifact ${groupId}#hibernate-core;3.3.1.GA!hibernate-core.jar:
http://oss.sonatype.org/content/groups/jetty/${groupId}/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar
==== grailsPlugins: tried
-- artifact ${groupId}#hibernate-core;3.3.1.GA!hibernate-core.jar:
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/hibernate-core-3.3.1.GA.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/hibernate-core-3.3.1.GA.jar
[FAILED ] javax.jms#jms;1.1!jms.jar: (0ms)
==== localMavenResolver: tried
/home/buildagent1/.m2/repository/javax/jms/jms/1.1/jms-1.1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/javax/jms/jms/1.1/jms-1.1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/javax/jms/jms/1.1/jms-1.1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/javax/jms/jms/1.1/jms-1.1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/javax/jms/jms/1.1/jms-1.1.jar
==== grailsPlugins: tried
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/jms-1.1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/jms-1.1.jar
[FAILED ] com.sun.jdmk#jmxtools;1.2.1!jmxtools.jar: (0ms)
==== localMavenResolver: tried
/home/buildagent1/.m2/repository/com/sun/jdmk/jmxtools/1.2.1/jmxtools-1.2.1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/com/sun/jdmk/jmxtools/1.2.1/jmxtools-1.2.1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/com/sun/jdmk/jmxtools/1.2.1/jmxtools-1.2.1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/com/sun/jdmk/jmxtools/1.2.1/jmxtools-1.2.1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/com/sun/jdmk/jmxtools/1.2.1/jmxtools-1.2.1.jar
==== grailsPlugins: tried
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/jmxtools-1.2.1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/jmxtools-1.2.1.jar
[FAILED ] com.sun.jmx#jmxri;1.2.1!jmxri.jar: (0ms)
==== localMavenResolver: tried
/home/buildagent1/.m2/repository/com/sun/jmx/jmxri/1.2.1/jmxri-1.2.1.jar
==== mavenCentral: tried
http://repo1.maven.org/maven2/com/sun/jmx/jmxri/1.2.1/jmxri-1.2.1.jar
==== http://m2repo.spockframework.org/snapshots: tried
http://m2repo.spockframework.org/snapshots/com/sun/jmx/jmxri/1.2.1/jmxri-1.2.1.jar
==== http://m2repo.spockframework.org/releases: tried
http://m2repo.spockframework.org/releases/com/sun/jmx/jmxri/1.2.1/jmxri-1.2.1.jar
==== http://oss.sonatype.org/content/groups/jetty: tried
http://oss.sonatype.org/content/groups/jetty/com/sun/jmx/jmxri/1.2.1/jmxri-1.2.1.jar
==== grailsPlugins: tried
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT/lib/jmxri-1.2.1.jar
/home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT/lib/jmxri-1.2.1.jar
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.springframework#org.springframework.core;3.0.0.RC1: not found
:: org.springframework#org.springframework.aop;3.0.0.RC1: not found
:: org.springframework#org.springframework.aspects;3.0.0.RC1: not found
:: org.springframework#org.springframework.asm;3.0.0.RC1: not found
:: org.springframework#org.springframework.beans;3.0.0.RC1: not found
:: org.springframework#org.springframework.context;3.0.0.RC1: not found
:: org.springframework#org.springframework.context.support;3.0.0.RC1: not found
:: org.springframework#org.springframework.expression;3.0.0.RC1: not found
:: org.springframework#org.springframework.instrument;3.0.0.RC1: not found
:: org.springframework#org.springframework.jdbc;3.0.0.RC1: not found
:: org.springframework#org.springframework.jms;3.0.0.RC1: not found
:: org.springframework#org.springframework.orm;3.0.0.RC1: not found
:: org.springframework#org.springframework.oxm;3.0.0.RC1: not found
:: org.springframework#org.springframework.transaction;3.0.0.RC1: not found
:: org.springframework#org.springframework.web;3.0.0.RC1: not found
:: org.springframework#org.springframework.web.servlet;3.0.0.RC1: not found
:: opensymphony#oscache;2.4.1: not found
:: apache-taglibs#standard;1.1.2: not found
:: ${groupId}#hibernate-core;3.3.1.GA: not found
::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::
:: FAILED DOWNLOADS ::
:: ^ see resolution messages for details ^ ::
::::::::::::::::::::::::::::::::::::::::::::::
:: javax.jms#jms;1.1!jms.jar
:: com.sun.jdmk#jmxtools;1.2.1!jmxtools.jar
:: com.sun.jmx#jmxri;1.2.1!jmxri.jar
::::::::::::::::::::::::::::::::::::::::::::::
:::: ERRORS
SERVER ERROR: Illegal group reference url=http://oss.sonatype.org/content/groups/jetty/$%7BgroupId%7D/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.pom
SERVER ERROR: Illegal group reference url=http://oss.sonatype.org/content/groups/jetty/$%7BgroupId%7D/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar
Failed to install plugin [hibernate-1.2-SNAPSHOT]. Plugin has missing JAR dependencies.
[delete] Deleting directory /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/tomcat-1.2-SNAPSHOT
[delete] Deleting directory /home/buildagent1/agent/work/30873b7a1f97a367/spock-grails/plugins/hibernate-1.2-SNAPSHOT
srv%
That error is coming from Nexus.
I have asked Jason van Zyl for an opinion on what is happening.