You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by NinaBinde <ni...@hotmail.com> on 2008/05/18 05:37:18 UTC

Maven not recognising the local repository

My project fails to compile since it is not recognising any of the packages
in the repository. The repository is in my local Document and Settings/...
folder and I can see all the jars there.  
Anybody has any clues as why this would happen? Thanks in advance.
-- 
View this message in context: http://www.nabble.com/Maven-not-recognising-the-local-repository-tp17298929p17298929.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven not recognising the local repository

Posted by Wayne Fay <wa...@gmail.com>.
On Sun, May 18, 2008 at 1:04 PM, NinaBinde <ni...@hotmail.com> wrote:
>
> Thanks for that. You are right, it is only recognising a couple of them and
> ignoring the rest. I noticed the ones which it is recognising, it has
> "<scope>provided</scope>" in the pom. The others which it is not recognising
> have <scope>runtime</scope>. I am 100% sure that my pom.xml is fine since

The scope "runtime" means "this is not used during compilation". Given
your compilation errors, this is clearly incorrect/insufficient. Try
changing those scopes to "compile".

Wayne

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven not recognising the local repository

Posted by NinaBinde <ni...@hotmail.com>.
Thanks for that. You are right, it is only recognising a couple of them and
ignoring the rest. I noticed the ones which it is recognising, it has
"<scope>provided</scope>" in the pom. The others which it is not recognising
have <scope>runtime</scope>. I am 100% sure that my pom.xml is fine since
few others use the same pom.xml and it works fine for them. I have not
written this pom and it was given to us. They are also kind of puzzled. Here
is the pom.xml for reference:

<?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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.puffy</groupId>
    <artifactId>psi</artifactId>
    <name>Puffy World</name>
    <packaging>war</packaging>
    <version>1.0</version>
    <build>
        <defaultGoal>package</defaultGoal>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <warName>ROOT</warName>
                   
<webappDirectory>${project.build.directory}/ROOT</webappDirectory>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                   <excludes>
                       <exclude>**/integration/**</exclude>
                   </excludes>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.mortbay.jetty</groupId>
                <artifactId>maven-jetty-plugin</artifactId>
                <version>6.1.5</version>
                <configuration>
                    <contextPath>/</contextPath>
                    <scanIntervalSeconds>10</scanIntervalSeconds>
                    <scanTargets>
                       
<scanTarget>src/main/webapp/WEB-INF/spring</scanTarget>
                       
<scanTarget>src/main/webapp/WEB-INF/decorators.xml</scanTarget>
                       
<scanTarget>src/main/webapp/WEB-INF/menu-config.xml</scanTarget>
                       
<scanTarget>src/main/webapp/WEB-INF/sqlmap-config.xml</scanTarget>
                       
<scanTarget>src/main/webapp/WEB-INF/urlrewrite.xml</scanTarget>
                    </scanTargets>
                    <webApp>${project.build.directory}/ROOT</webApp>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <profiles>
        <profile>
            <id>jetty6</id>
            <dependencies>
                <dependency>
                    <groupId>com.oracle</groupId>
                    <artifactId>ojdbc14</artifactId>
                    <version>10.2.0.2.0</version>
                </dependency>
            </dependencies>
        </profile>
        <profile>
            <id>integration-test</id>
            <build>
                <defaultGoal>integration-test</defaultGoal>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.cargo</groupId>
                        <artifactId>cargo-maven2-plugin</artifactId>
                        <configuration>
                            <wait>false</wait>
                            <container>
                                <containerId>tomcat5x</containerId>
                                <home>${server.home}</home>
                            </container>
                            <configuration>
                               
<home>${project.build.directory}/tomcat5x</home>
                                <deployables>
                                    <deployable>
                                       
<location>${project.build.directory}/ROOT.war</location>
                                    </deployable>
                                </deployables>
                            </configuration>
                        </configuration>
                        <executions>
                            <execution>
                                <id>start-server</id>
                                <phase>pre-integration-test</phase>
                                <goals>
                                    <goal>start</goal>
                                </goals>
                            </execution>
                            <execution>
                                <id>stop-server</id>
                                <phase>post-integration-test</phase>
                                <goals>
                                    <goal>stop</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <artifactId>maven-surefire-plugin</artifactId>
                        <version>2.3</version>
                        <executions>
                            <execution>
                                <phase>integration-test</phase>
                                <goals>
                                    <goal>test</goal>
                                </goals>
                                <configuration>
                                   
<disableXmlReport>true</disableXmlReport>
                                    <excludes>
                                        <exclude>none</exclude>
                                       
<exclude>**/integration/TestConstants.java</exclude>
                                    </excludes>
                                    <includes>
                                        <include>**/integration/**</include>
                                    </includes>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.4</version>
            <scope>provided</scope>
        </dependency>
         <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.tuckey</groupId>
            <artifactId>urlrewrite</artifactId>
            <version>2.5.2</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>opensymphony</groupId>
            <artifactId>sitemesh</artifactId>
            <version>2.2.1</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springmodules</groupId>
            <artifactId>spring-modules-validation</artifactId>
            <version>0.8a</version>
            <scope>runtime</scope>
            <exclusions>
                <exclusion>
                    <artifactId>spring</artifactId>
                    <groupId>org.springframework</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>antlr</artifactId>
                    <groupId>antlr</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>js</artifactId>
                    <groupId>rhino</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>commons-lang</artifactId>
                    <groupId>commons-lang</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xml-apis</artifactId>
                    <groupId>xml-apis</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>commons-validator</artifactId>
                    <groupId>commons-validator</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.puffy</groupId>
            <artifactId>commons</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>struts-menu</groupId>
            <artifactId>struts-menu</artifactId>
            <version>2.4.2</version>
            <scope>runtime</scope>
            <exclusions>
                <exclusion>
                    <groupId>velocity</groupId>
                    <artifactId>velocity</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>velocity-tools</groupId>
                    <artifactId>velocity-tools-view</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity</artifactId>
            <version>1.5</version>
            <scope>runtime</scope>
            <exclusions>
                <exclusion>
                    <groupId>ant</groupId>
                    <artifactId>ant</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-lang</groupId>
                    <artifactId>commons-lang</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.servlet</groupId>
                    <artifactId>servlet-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>logkit</groupId>
                    <artifactId>logkit</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>werken-xpath</groupId>
                    <artifactId>werken-xpath</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-tools</artifactId>
            <version>1.3</version>
            <exclusions>
                <exclusion>
                    <groupId>velocity</groupId>
                    <artifactId>velocity</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>sslext</groupId>
                    <artifactId>sslext</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.servlet</groupId>
                    <artifactId>servlet-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>struts</groupId>
                    <artifactId>struts</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-validator</groupId>
                    <artifactId>commons-validator</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
            </exclusions>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.1.2</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>taglibs</groupId>
            <artifactId>standard</artifactId>
            <version>1.1.2</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.3.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>htmlunit</groupId>
            <artifactId>htmlunit</artifactId>
            <version>1.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <scm>
       
<connection>scm:svn:http://subversion.puffy.net/repos/psi/trunk</connection>
       
<developerConnection>scm:svn:http://subversion.puffy.net/repos/psi/trunk</developerConnection>
        <tag>HEAD</tag>
        <url>http://subversion.puffy.net/repos/psi/trunk</url>
    </scm>
</project>
   


Wendy Smoak-3 wrote:
> 
> On Sun, May 18, 2008 at 8:41 AM, NinaBinde <ni...@hotmail.com>
> wrote:
>>
>> Thanks for the reply. The pom.xml is having all the dependencies since
>> Maven
>> downloaded all the jars into the repository using the same pom.xml. Is
>> there
>> anything else which I might be missing?
> 
> Just above the compilation errors, you can see the classpath, which
> does _not_ include acegi or commons-lang.
> 
> [DEBUG] Configuring mojo
> 'org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile' with basic
> configurator -->
> [DEBUG]   (f) basedir = C:\Dev\psi
> [DEBUG]   (f) buildDirectory = C:\Dev\psi\target
> [DEBUG]   (f) classpathElements = [C:\Dev\psi\target\classes, C:\Documents
> and
> Settings\ninabinde\.m2\repository\javax\servlet\servlet-api\2.4\servlet-api-2.4.jar,
> C:\Documents and
> Settings\ninabinde\.m2\repository\javax\servlet\jsp\jsp-api\2.0\jsp-api-2.0.jar,
> C:\Documents and
> Settings\ninabinde\.m2\repository\com\puffy\commons\1.0\commons-1.0.jar,
> C:\Documents and
> Settings\ninabinde\.m2\repository\com\oracle\ojdbc14\10.2.0.2.0\ojdbc14-10.2.0.2.0.jar]
> [DEBUG]   (f) compileSourceRoots = [C:\Dev\psi\src\main\java]
> 
> If you're still having trouble, we'll need to see the pom.xml file.
> 
> -- 
> Wendy
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Maven-not-recognising-the-local-repository-tp17298929p17305206.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven not recognising the local repository

Posted by Wendy Smoak <ws...@gmail.com>.
On Sun, May 18, 2008 at 8:41 AM, NinaBinde <ni...@hotmail.com> wrote:
>
> Thanks for the reply. The pom.xml is having all the dependencies since Maven
> downloaded all the jars into the repository using the same pom.xml. Is there
> anything else which I might be missing?

Just above the compilation errors, you can see the classpath, which
does _not_ include acegi or commons-lang.

[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile' with basic
configurator -->
[DEBUG]   (f) basedir = C:\Dev\psi
[DEBUG]   (f) buildDirectory = C:\Dev\psi\target
[DEBUG]   (f) classpathElements = [C:\Dev\psi\target\classes, C:\Documents
and Settings\ninabinde\.m2\repository\javax\servlet\servlet-api\2.4\servlet-api-2.4.jar,
C:\Documents and
Settings\ninabinde\.m2\repository\javax\servlet\jsp\jsp-api\2.0\jsp-api-2.0.jar,
C:\Documents and
Settings\ninabinde\.m2\repository\com\puffy\commons\1.0\commons-1.0.jar,
C:\Documents and
Settings\ninabinde\.m2\repository\com\oracle\ojdbc14\10.2.0.2.0\ojdbc14-10.2.0.2.0.jar]
[DEBUG]   (f) compileSourceRoots = [C:\Dev\psi\src\main\java]

If you're still having trouble, we'll need to see the pom.xml file.

-- 
Wendy

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven not recognising the local repository

Posted by NinaBinde <ni...@hotmail.com>.
Thanks for the reply. The pom.xml is having all the dependencies since Maven
downloaded all the jars into the repository using the same pom.xml. Is there
anything else which I might be missing?  


Wayne Fay wrote:
> 
> It is not merely sufficient to have the artifacts you need in your
> project available in the repo. You must also add <dependencies> in
> your pom.xml file for each of the artifacts so they are brought in at
> compile-time and available in the classpath.
> 
> Looking at the messages below, it seems like you need to add a
> dependency on acegi and one on commons-lang. Use www.mvnrepository.com
> to find the proper <dependency> tag for your artifacts, and try
> building your project again.
> 
> Wayne
> 
> On Sun, May 18, 2008 at 10:49 AM, NinaBinde <ni...@hotmail.com>
> wrote:
>>
> 
>> C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[6,25]
>> package org.acegisecurity does not exist
>>
>> C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[7,31]
>> package org.apache.commons.lang does not exist
>>
>> C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[15,89]
>> package org.acegisecurity.ui.webapp does not exist
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Maven-not-recognising-the-local-repository-tp17298929p17304299.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven not recognising the local repository

Posted by Wayne Fay <wa...@gmail.com>.
It is not merely sufficient to have the artifacts you need in your
project available in the repo. You must also add <dependencies> in
your pom.xml file for each of the artifacts so they are brought in at
compile-time and available in the classpath.

Looking at the messages below, it seems like you need to add a
dependency on acegi and one on commons-lang. Use www.mvnrepository.com
to find the proper <dependency> tag for your artifacts, and try
building your project again.

Wayne

On Sun, May 18, 2008 at 10:49 AM, NinaBinde <ni...@hotmail.com> wrote:
>

> C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[6,25]
> package org.acegisecurity does not exist
>
> C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[7,31]
> package org.apache.commons.lang does not exist
>
> C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[15,89]
> package org.acegisecurity.ui.webapp does not exist
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven not recognising the local repository

Posted by NinaBinde <ni...@hotmail.com>.
Thanks Tim for your quick reply. I am at my wit's end with this problem since
I am having this since many days and am unable to solve it . I have the
classpath set for M2_HOME and M2_REPO. I did do a mvn install and it did
download all the jars into the repository. I did not make any modifications
to settings.xml since I am not behind a proxy. Here is the trace of the
error message with -X option when I do a mvn compile.

 org.apache.maven:maven-artifact-manager:jar:2.0:runtime
 org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime
 org.apache.maven:maven-project:jar:2.0:runtime
 org.apache.maven:maven-artifact:jar:2.0:runtime
 org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Got plugin artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-resources-plugin:2.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Resolving plugin: org.apache.maven.plugins:maven-compiler-plugin
with version: 2.0.2
[DEBUG] In verifyVersionedPlugin for:
org.apache.maven.plugins:maven-compiler-plugin
[DEBUG]
org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.0.2:runtime
(selected for runtime)
[DEBUG]   org.apache.maven:maven-plugin-api:jar:2.0:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime
(selected for runtime)
[DEBUG]    
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
(selected for runtime)
[DEBUG]       junit:junit:jar:3.8.1:runtime (selected for runtime)
[DEBUG]       classworlds:classworlds:jar:1.1-alpha-2:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime
(selected for runtime)
[DEBUG]   org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime
(selected for runtime)
[DEBUG]     org.codehaus.plexus:plexus-utils:jar:1.0.5:runtime (removed -
nearer found: 1.0.4)
[DEBUG]   org.apache.maven:maven-artifact:jar:2.0:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.1:runtime (removed - nearer
found: 1.0.4)
[DEBUG] Using the following artifacts for classpath of:
org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.0.2:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime
 junit:junit:jar:3.8.1:runtime
 org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
 org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime
 classworlds:classworlds:jar:1.1-alpha-2:runtime
 org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime
 org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime
 org.apache.maven:maven-artifact:jar:2.0:runtime
 org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Got plugin artifacts:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime,
junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime,
org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Returning artifacts:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime,
junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime,
org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-compiler-plugin:2.0.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Returning artifacts:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime,
junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime,
org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Resolving plugin:
org.apache.maven.plugins.internal:maven-state-management with version: 2.1
[DEBUG] In verifyVersionedPlugin for:
org.apache.maven.plugins.internal:maven-state-management
[DEBUG] Skipping resolution for Maven built-in plugin:
org.apache.maven.plugins.internal:maven-state-management
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins.internal:maven-state-management:2.1@48/thread:main
[DEBUG] Realm for plugin:
org.apache.maven.plugins.internal:maven-state-management:2.1 not found.
Using project realm instead.
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins.internal:maven-state-management:2.1 to:
ClassRealm[plexus.core, parent: null]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins.internal:maven-state-management:2.1@48/thread:main
[DEBUG] Found no artifacts for plugin:
/plugins/org.apache.maven.plugins.internal:maven-state-management:2.1@48/thread:main
[DEBUG] Resolving plugin: org.mortbay.jetty:maven-jetty-plugin with version:
6.1.5
[DEBUG] In verifyVersionedPlugin for: org.mortbay.jetty:maven-jetty-plugin
[DEBUG] org.mortbay.jetty:maven-jetty-plugin:maven-plugin:6.1.5:runtime
(selected for runtime)
[DEBUG]   commons-el:commons-el:jar:1.0:runtime (selected for runtime)
[DEBUG]   org.mortbay.jetty:jetty:jar:6.1.5:runtime (selected for runtime)
[DEBUG]     org.mortbay.jetty:jetty-util:jar:6.1.5:runtime (selected for
runtime)
[DEBUG]     org.mortbay.jetty:servlet-api-2.5:jar:6.1.5:runtime (selected
for runtime)
[DEBUG]   org.apache.maven:maven-project:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-settings:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]       org.apache.maven:maven-model:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]         org.codehaus.plexus:plexus-utils:jar:1.1:runtime (selected
for runtime)
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:1.1:runtime (selected for
runtime)
[DEBUG]      
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:runtime
(selected for runtime)
[DEBUG]         junit:junit:jar:3.8.1:runtime (applying version: 3.8.2)
[DEBUG]         junit:junit:jar:3.8.2:runtime (selected for runtime)
[DEBUG]         org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed
- nearer found: 1.1)
[DEBUG]         classworlds:classworlds:jar:1.1-alpha-2:runtime (selected
for runtime)
[DEBUG]     org.apache.maven:maven-profile:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-model:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-artifact-manager:jar:2.0.3:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.3:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-artifact:jar:2.0.3:runtime (selected
for runtime)
[DEBUG]      
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:runtime (selected
for runtime)
[DEBUG]         org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed
- nearer found: 1.1)
[DEBUG]     org.codehaus.plexus:plexus-utils:jar:1.1:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-artifact:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]    
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:runtime
(selected for runtime)
[DEBUG]       junit:junit:jar:3.8.1:runtime (applying version: 3.8.2)
[DEBUG]       junit:junit:jar:3.8.2:runtime (selected for runtime)
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed -
nearer found: 1.1)
[DEBUG]       classworlds:classworlds:jar:1.1-alpha-2:runtime (selected for
runtime)
[DEBUG]   org.apache.maven:maven-plugin-api:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]   org.apache.maven:maven-artifact:jar:2.0.3:runtime (selected for
runtime)
[DEBUG]   org.apache.maven:maven-plugin-tools-api:jar:2.0:runtime (selected
for runtime)
[DEBUG]     org.apache.maven:maven-project:jar:2.0:runtime (removed - nearer
found: 2.0.3)
[DEBUG]     org.apache.maven:maven-plugin-descriptor:jar:2.0:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-plugin-api:jar:2.0:runtime (removed -
nearer found: 2.0.3)
[DEBUG]       org.apache.maven:maven-artifact:jar:2.0:runtime (removed -
nearer found: 2.0.3)
[DEBUG]      
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
(removed - nearer found: 1.0-alpha-9)
[DEBUG]     org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed -
nearer found: 1.1)
[DEBUG]   org.mortbay.jetty:jetty-plus:jar:6.1.5:runtime (selected for
runtime)
[DEBUG]     javax.mail:mail:jar:1.4:runtime (selected for runtime)
[DEBUG]       javax.activation:activation:jar:1.1:runtime (selected for
runtime)
[DEBUG]     javax.activation:activation:jar:1.1:runtime (selected for
runtime)
[DEBUG]     geronimo-spec:geronimo-spec-jta:jar:1.0.1B-rc4:runtime (selected
for runtime)
[DEBUG]   ant:ant:jar:1.6.5:runtime (selected for runtime)
[DEBUG]   org.mortbay.jetty:jetty-naming:jar:6.1.5:runtime (selected for
runtime)
[DEBUG]   org.mortbay.jetty:jetty-management:jar:6.1.5:runtime (selected for
runtime)
[DEBUG]     mx4j:mx4j:jar:3.0.1:runtime (selected for runtime)
[DEBUG]     mx4j:mx4j-tools:jar:3.0.1:runtime (selected for runtime)
[DEBUG]   org.mortbay.jetty:jsp-2.1:jar:6.1.5:runtime (selected for runtime)
[DEBUG]     org.eclipse.jdt:core:jar:3.1.1:runtime (selected for runtime)
[DEBUG]     org.mortbay.jetty:jsp-api-2.1:jar:6.1.5:runtime (selected for
runtime)
[DEBUG]   org.mortbay.jetty:jetty-annotations:jar:6.1.5:runtime (selected
for runtime)
[DEBUG]    
org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0:runtime
(selected for runtime)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.1:runtime (selected for
runtime)
[DEBUG] Using the following artifacts for classpath of:
org.mortbay.jetty:maven-jetty-plugin:maven-plugin:6.1.5:

[org.apache.maven:maven-repository-metadata:jar:2.0.3:runtime
 org.mortbay.jetty:jetty-naming:jar:6.1.5:runtime
 mx4j:mx4j-tools:jar:3.0.1:runtime
 org.apache.maven:maven-plugin-tools-api:jar:2.0:runtime
 ant:ant:jar:1.6.5:runtime
 org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0:runtime
 geronimo-spec:geronimo-spec-jta:jar:1.0.1B-rc4:runtime
 org.mortbay.jetty:jetty-util:jar:6.1.5:runtime
 org.eclipse.jdt:core:jar:3.1.1:runtime
 org.apache.maven:maven-project:jar:2.0.3:runtime
 junit:junit:jar:3.8.2:runtime
 org.apache.maven:maven-settings:jar:2.0.3:runtime
 org.apache.maven:maven-plugin-descriptor:jar:2.0:runtime
 mx4j:mx4j:jar:3.0.1:runtime
 org.apache.maven:maven-plugin-api:jar:2.0.3:runtime
 org.mortbay.jetty:jsp-2.1:jar:6.1.5:runtime
 org.mortbay.jetty:jetty-plus:jar:6.1.5:runtime
 org.apache.maven:maven-profile:jar:2.0.3:runtime
 javax.activation:activation:jar:1.1:runtime
 org.apache.maven:maven-artifact-manager:jar:2.0.3:runtime
 org.mortbay.jetty:jetty:jar:6.1.5:runtime
 org.mortbay.jetty:jetty-management:jar:6.1.5:runtime
 org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:runtime
 org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:runtime
 classworlds:classworlds:jar:1.1-alpha-2:runtime
 org.apache.maven:maven-artifact:jar:2.0.3:runtime
 org.codehaus.plexus:plexus-utils:jar:1.1:runtime
 org.mortbay.jetty:jetty-annotations:jar:6.1.5:runtime
 javax.mail:mail:jar:1.4:runtime
 org.apache.maven:maven-model:jar:2.0.3:runtime
 org.mortbay.jetty:jsp-api-2.1:jar:6.1.5:runtime
 commons-el:commons-el:jar:1.0:runtime
 org.mortbay.jetty:servlet-api-2.5:jar:6.1.5:runtime]
[DEBUG] Got plugin artifacts:

[org.apache.maven:maven-repository-metadata:jar:2.0.3:runtime,
org.mortbay.jetty:jetty-naming:jar:6.1.5:runtime,
mx4j:mx4j-tools:jar:3.0.1:runtime,
org.apache.maven:maven-plugin-tools-api:jar:2.0:runtime,
ant:ant:jar:1.6.5:runtime,
org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0:runtime,
geronimo-spec:geronimo-spec-jta:jar:1.0.1B-rc4:runtime,
org.mortbay.jetty:jetty-util:jar:6.1.5:runtime,
org.eclipse.jdt:core:jar:3.1.1:runtime,
org.apache.maven:maven-project:jar:2.0.3:runtime,
junit:junit:jar:3.8.2:runtime,
org.apache.maven:maven-settings:jar:2.0.3:runtime,
org.apache.maven:maven-plugin-descriptor:jar:2.0:runtime,
mx4j:mx4j:jar:3.0.1:runtime,
org.apache.maven:maven-plugin-api:jar:2.0.3:runtime,
org.mortbay.jetty:jsp-2.1:jar:6.1.5:runtime,
org.mortbay.jetty:jetty-plus:jar:6.1.5:runtime,
org.apache.maven:maven-profile:jar:2.0.3:runtime,
javax.activation:activation:jar:1.1:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0.3:runtime,
org.mortbay.jetty:jetty:jar:6.1.5:runtime,
org.mortbay.jetty:jetty-management:jar:6.1.5:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.apache.maven:maven-artifact:jar:2.0.3:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.mortbay.jetty:jetty-annotations:jar:6.1.5:runtime,
javax.mail:mail:jar:1.4:runtime,
org.apache.maven:maven-model:jar:2.0.3:runtime,
org.mortbay.jetty:jsp-api-2.1:jar:6.1.5:runtime,
commons-el:commons-el:jar:1.0:runtime,
org.mortbay.jetty:servlet-api-2.5:jar:6.1.5:runtime]
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] Returning artifacts:

[org.apache.maven:maven-repository-metadata:jar:2.0.3:runtime,
org.mortbay.jetty:jetty-naming:jar:6.1.5:runtime,
mx4j:mx4j-tools:jar:3.0.1:runtime,
org.apache.maven:maven-plugin-tools-api:jar:2.0:runtime,
ant:ant:jar:1.6.5:runtime,
org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0:runtime,
geronimo-spec:geronimo-spec-jta:jar:1.0.1B-rc4:runtime,
org.mortbay.jetty:jetty-util:jar:6.1.5:runtime,
org.eclipse.jdt:core:jar:3.1.1:runtime,
org.apache.maven:maven-project:jar:2.0.3:runtime,
junit:junit:jar:3.8.2:runtime,
org.apache.maven:maven-settings:jar:2.0.3:runtime,
org.apache.maven:maven-plugin-descriptor:jar:2.0:runtime,
mx4j:mx4j:jar:3.0.1:runtime,
org.apache.maven:maven-plugin-api:jar:2.0.3:runtime,
org.mortbay.jetty:jsp-2.1:jar:6.1.5:runtime,
org.mortbay.jetty:jetty-plus:jar:6.1.5:runtime,
org.apache.maven:maven-profile:jar:2.0.3:runtime,
javax.activation:activation:jar:1.1:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0.3:runtime,
org.mortbay.jetty:jetty:jar:6.1.5:runtime,
org.mortbay.jetty:jetty-management:jar:6.1.5:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.apache.maven:maven-artifact:jar:2.0.3:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.mortbay.jetty:jetty-annotations:jar:6.1.5:runtime,
javax.mail:mail:jar:1.4:runtime,
org.apache.maven:maven-model:jar:2.0.3:runtime,
org.mortbay.jetty:jsp-api-2.1:jar:6.1.5:runtime,
commons-el:commons-el:jar:1.0:runtime,
org.mortbay.jetty:servlet-api-2.5:jar:6.1.5:runtime]

for plugin:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.mortbay.jetty:maven-jetty-plugin:6.1.5 to:
ClassRealm[/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] Returning artifacts:

[org.apache.maven:maven-repository-metadata:jar:2.0.3:runtime,
org.mortbay.jetty:jetty-naming:jar:6.1.5:runtime,
mx4j:mx4j-tools:jar:3.0.1:runtime,
org.apache.maven:maven-plugin-tools-api:jar:2.0:runtime,
ant:ant:jar:1.6.5:runtime,
org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.0:runtime,
geronimo-spec:geronimo-spec-jta:jar:1.0.1B-rc4:runtime,
org.mortbay.jetty:jetty-util:jar:6.1.5:runtime,
org.eclipse.jdt:core:jar:3.1.1:runtime,
org.apache.maven:maven-project:jar:2.0.3:runtime,
junit:junit:jar:3.8.2:runtime,
org.apache.maven:maven-settings:jar:2.0.3:runtime,
org.apache.maven:maven-plugin-descriptor:jar:2.0:runtime,
mx4j:mx4j:jar:3.0.1:runtime,
org.apache.maven:maven-plugin-api:jar:2.0.3:runtime,
org.mortbay.jetty:jsp-2.1:jar:6.1.5:runtime,
org.mortbay.jetty:jetty-plus:jar:6.1.5:runtime,
org.apache.maven:maven-profile:jar:2.0.3:runtime,
javax.activation:activation:jar:1.1:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0.3:runtime,
org.mortbay.jetty:jetty:jar:6.1.5:runtime,
org.mortbay.jetty:jetty-management:jar:6.1.5:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.apache.maven:maven-artifact:jar:2.0.3:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.mortbay.jetty:jetty-annotations:jar:6.1.5:runtime,
javax.mail:mail:jar:1.4:runtime,
org.apache.maven:maven-model:jar:2.0.3:runtime,
org.mortbay.jetty:jsp-api-2.1:jar:6.1.5:runtime,
commons-el:commons-el:jar:1.0:runtime,
org.mortbay.jetty:servlet-api-2.5:jar:6.1.5:runtime]

for plugin:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] Resolving plugin:
org.apache.maven.plugins.internal:maven-state-management with version: 2.1
[DEBUG] In verifyVersionedPlugin for:
org.apache.maven.plugins.internal:maven-state-management
[DEBUG] Skipping resolution for Maven built-in plugin:
org.apache.maven.plugins.internal:maven-state-management
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins.internal:maven-state-management:2.1@48/thread:main
[DEBUG] Realm for plugin:
org.apache.maven.plugins.internal:maven-state-management:2.1 not found.
Using project realm instead.
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins.internal:maven-state-management:2.1 to:
ClassRealm[plexus.core, parent: null]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins.internal:maven-state-management:2.1@48/thread:main
[DEBUG] Found no artifacts for plugin:
/plugins/org.apache.maven.plugins.internal:maven-state-management:2.1@48/thread:main
[DEBUG] 

Our build plan is:

1. org.apache.maven.plugins:maven-clean-plugin:2.2:clean [executionId:
default, phase: clean]
2. org.apache.maven.plugins:maven-resources-plugin:2.2:resources
[executionId: default, phase: process-resources]
3. org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
[executionId: default, phase: compile]
4. org.apache.maven.plugins:maven-resources-plugin:2.2:testResources
[executionId: default, phase: process-test-resources]
5. org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile
[executionId: default, phase: test-compile]
6. org.apache.maven.plugins:maven-surefire-plugin:2.3:test [executionId:
default, phase: test]
7. org.apache.maven.plugins:maven-war-plugin:2.1-alpha-1:war [executionId:
default, phase: package]
8. [fork start]
9.   org.apache.maven.plugins:maven-resources-plugin:2.2:resources
[executionId: default, phase: process-resources]
10.   org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
[executionId: default, phase: compile]
11.   org.apache.maven.plugins:maven-resources-plugin:2.2:testResources
[executionId: default, phase: process-test-resources]
12.   org.apache.maven.plugins:maven-compiler-plugin:2.0.2:testCompile
[executionId: default, phase: test-compile]
13. [fork end]
14.   org.mortbay.jetty:maven-jetty-plugin:6.1.5:run [executionId: default,
phase: None specified]
15. [fork cleanup]

for task-segment: Bio Optics World
Id: com.puffy:psi:war:1.0
task-segment: [clean, package, jetty:run]
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Entering lifecycle phase: clean
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Resolving plugin: org.apache.maven.plugins:maven-clean-plugin with
version: 2.2
[DEBUG] In verifyVersionedPlugin for:
org.apache.maven.plugins:maven-clean-plugin
[DEBUG] org.apache.maven.plugins:maven-clean-plugin:maven-plugin:2.2:runtime
(selected for runtime)
[DEBUG]   org.apache.maven:maven-project:jar:2.0:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-profile:jar:2.0:runtime (selected for
runtime)
[DEBUG]       org.apache.maven:maven-model:jar:2.0:runtime (selected for
runtime)
[DEBUG]         org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected
for runtime)
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected
for runtime)
[DEBUG]      
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
(selected for runtime)
[DEBUG]         junit:junit:jar:3.8.1:runtime (selected for runtime)
[DEBUG]         classworlds:classworlds:jar:1.1-alpha-2:runtime (selected
for runtime)
[DEBUG]     org.apache.maven:maven-model:jar:2.0:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-artifact-manager:jar:2.0:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-artifact:jar:2.0:runtime (selected for
runtime)
[DEBUG]      
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime (selected
for runtime)
[DEBUG]     org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-artifact:jar:2.0:runtime (selected for
runtime)
[DEBUG]    
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
(selected for runtime)
[DEBUG]       junit:junit:jar:3.8.1:runtime (selected for runtime)
[DEBUG]       classworlds:classworlds:jar:1.1-alpha-2:runtime (selected for
runtime)
[DEBUG]   org.apache.maven:maven-plugin-api:jar:2.0:runtime (selected for
runtime)
[DEBUG]   org.apache.maven.shared:file-management:jar:1.2:runtime (selected
for runtime)
[DEBUG]     org.apache.maven:maven-plugin-api:jar:2.0.6:runtime (removed -
nearer found: 2.0)
[DEBUG]     org.apache.maven.shared:maven-shared-io:jar:1.1:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-artifact:jar:2.0.2:runtime (removed -
nearer found: 2.0)
[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.0.2:runtime
(removed - nearer found: 2.0)
[DEBUG]      
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:runtime (removed -
nearer found: 1.0-alpha-5)
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:1.4.6:runtime (removed -
nearer found: 1.0.4)
[DEBUG]     org.codehaus.plexus:plexus-utils:jar:1.4.6:runtime (removed -
nearer found: 1.0.4)
[DEBUG]    
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:runtime
(removed - nearer found: 1.0-alpha-8)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed -
nearer found: 1.1)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.1:runtime (selected for
runtime)
[DEBUG] Using the following artifacts for classpath of:
org.apache.maven.plugins:maven-clean-plugin:maven-plugin:2.2:

[junit:junit:jar:3.8.1:runtime
 org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
 org.apache.maven:maven-model:jar:2.0:runtime
 org.apache.maven:maven-profile:jar:2.0:runtime
 classworlds:classworlds:jar:1.1-alpha-2:runtime
 org.codehaus.plexus:plexus-utils:jar:1.1:runtime
 org.apache.maven.shared:file-management:jar:1.2:runtime
 org.apache.maven:maven-repository-metadata:jar:2.0:runtime
 org.apache.maven:maven-artifact-manager:jar:2.0:runtime
 org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime
 org.apache.maven.shared:maven-shared-io:jar:1.1:runtime
 org.apache.maven:maven-project:jar:2.0:runtime
 org.apache.maven:maven-plugin-api:jar:2.0:runtime
 org.apache.maven:maven-artifact:jar:2.0:runtime]
[DEBUG] Got plugin artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven.shared:file-management:jar:1.2:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven.shared:maven-shared-io:jar:1.1:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime]
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven.shared:file-management:jar:1.2:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven.shared:maven-shared-io:jar:1.1:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-clean-plugin:2.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven.shared:file-management:jar:1.2:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven.shared:maven-shared-io:jar:1.1:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-clean-plugin:2.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven.shared:file-management:jar:1.2:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven.shared:maven-shared-io:jar:1.1:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Looking up mojo
org.apache.maven.plugins:maven-clean-plugin:2.2:clean in realm
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main -
descRealmId=/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] Looked up - org.apache.maven.plugin.clean.CleanMojo@1a32ea4 -
ClassRealm[/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-clean-plugin:2.2:clean' with basic
configurator -->
[DEBUG]   (f) directory = C:\Dev\psi\target
[DEBUG]   (f) failOnError = true
[DEBUG]   (f) followSymLinks = false
[DEBUG]   (f) outputDirectory = C:\Dev\psi\target\classes
[DEBUG]   (f) project = MavenProject: com.puffy:psi:1.0 @ C:\Dev\psi\pom.xml
[DEBUG]   (f) reportDirectory = C:\Dev\psi\target\site
[DEBUG]   (f) skip = false
[DEBUG]   (f) testOutputDirectory = C:\Dev\psi\target\test-classes
[DEBUG]   (f) verbose = false
[DEBUG] -- end configuration --
[INFO] [clean:clean]
[DEBUG] Setting context classloader for plugin to:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
(instance is:
ClassRealm[/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]])
[INFO] Deleting directory C:\Dev\psi\target
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Completed lifecycle phase: clean
[DEBUG]
------------------------------------------------------------------------
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Entering lifecycle phase: process-resources
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Resolving plugin: org.apache.maven.plugins:maven-resources-plugin
with version: 2.2
[DEBUG] In verifyVersionedPlugin for:
org.apache.maven.plugins:maven-resources-plugin
[DEBUG]
org.apache.maven.plugins:maven-resources-plugin:maven-plugin:2.2:runtime
(selected for runtime)
[DEBUG]   org.apache.maven:maven-plugin-api:jar:2.0:runtime (selected for
runtime)
[DEBUG]   org.apache.maven:maven-project:jar:2.0:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-profile:jar:2.0:runtime (selected for
runtime)
[DEBUG]       org.apache.maven:maven-model:jar:2.0:runtime (selected for
runtime)
[DEBUG]         org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected
for runtime)
[DEBUG]       org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected
for runtime)
[DEBUG]      
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
(selected for runtime)
[DEBUG]         junit:junit:jar:3.8.1:runtime (selected for runtime)
[DEBUG]         classworlds:classworlds:jar:1.1-alpha-2:runtime (selected
for runtime)
[DEBUG]     org.apache.maven:maven-model:jar:2.0:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-artifact-manager:jar:2.0:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0:runtime
(selected for runtime)
[DEBUG]       org.apache.maven:maven-artifact:jar:2.0:runtime (selected for
runtime)
[DEBUG]      
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime (selected
for runtime)
[DEBUG]     org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected for
runtime)
[DEBUG]     org.apache.maven:maven-artifact:jar:2.0:runtime (selected for
runtime)
[DEBUG]    
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
(selected for runtime)
[DEBUG]       junit:junit:jar:3.8.1:runtime (selected for runtime)
[DEBUG]       classworlds:classworlds:jar:1.1-alpha-2:runtime (selected for
runtime)
[DEBUG]   org.apache.maven:maven-model:jar:2.0:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (removed -
nearer found: 1.1)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.1:runtime (selected for
runtime)
[DEBUG] Using the following artifacts for classpath of:
org.apache.maven.plugins:maven-resources-plugin:maven-plugin:2.2:

[junit:junit:jar:3.8.1:runtime
 org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
 org.apache.maven:maven-model:jar:2.0:runtime
 org.apache.maven:maven-profile:jar:2.0:runtime
 classworlds:classworlds:jar:1.1-alpha-2:runtime
 org.codehaus.plexus:plexus-utils:jar:1.1:runtime
 org.apache.maven:maven-repository-metadata:jar:2.0:runtime
 org.apache.maven:maven-artifact-manager:jar:2.0:runtime
 org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime
 org.apache.maven:maven-project:jar:2.0:runtime
 org.apache.maven:maven-artifact:jar:2.0:runtime
 org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Got plugin artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-resources-plugin:2.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-resources-plugin:2.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Returning artifacts:

[junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.apache.maven:maven-model:jar:2.0:runtime,
org.apache.maven:maven-profile:jar:2.0:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-utils:jar:1.1:runtime,
org.apache.maven:maven-repository-metadata:jar:2.0:runtime,
org.apache.maven:maven-artifact-manager:jar:2.0:runtime,
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-5:runtime,
org.apache.maven:maven-project:jar:2.0:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Looking up mojo
org.apache.maven.plugins:maven-resources-plugin:2.2:resources in realm
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
-
descRealmId=/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] Looked up - org.apache.maven.plugin.resources.ResourcesMojo@15af049
-
ClassRealm[/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-resources-plugin:2.2:resources' with basic
configurator -->
[DEBUG]   (f) filters = []
[DEBUG]   (f) outputDirectory = C:\Dev\psi\target\classes
[DEBUG]   (f) project = MavenProject: com.puffy:psi:1.0 @ C:\Dev\psi\pom.xml
[DEBUG]   (f) resources = [org.apache.maven.model.Resource@1555185]
[DEBUG] -- end configuration --
[INFO] [resources:resources]
[DEBUG] Setting context classloader for plugin to:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
(instance is:
ClassRealm[/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]])
[INFO] Using default encoding to copy filtered resources.
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Completed lifecycle phase: process-resources
[DEBUG]
------------------------------------------------------------------------
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Entering lifecycle phase: compile
[DEBUG]
------------------------------------------------------------------------
[DEBUG] Resolving plugin: org.apache.maven.plugins:maven-compiler-plugin
with version: 2.0.2
[DEBUG] In verifyVersionedPlugin for:
org.apache.maven.plugins:maven-compiler-plugin
[DEBUG]
org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.0.2:runtime
(selected for runtime)
[DEBUG]   org.apache.maven:maven-plugin-api:jar:2.0:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime
(selected for runtime)
[DEBUG]    
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
(selected for runtime)
[DEBUG]       junit:junit:jar:3.8.1:runtime (selected for runtime)
[DEBUG]       classworlds:classworlds:jar:1.1-alpha-2:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime
(selected for runtime)
[DEBUG]   org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime
(selected for runtime)
[DEBUG]     org.codehaus.plexus:plexus-utils:jar:1.0.5:runtime (removed -
nearer found: 1.0.4)
[DEBUG]   org.apache.maven:maven-artifact:jar:2.0:runtime (selected for
runtime)
[DEBUG]   org.codehaus.plexus:plexus-utils:jar:1.1:runtime (removed - nearer
found: 1.0.4)
[DEBUG] Using the following artifacts for classpath of:
org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.0.2:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime
 junit:junit:jar:3.8.1:runtime
 org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime
 org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime
 classworlds:classworlds:jar:1.1-alpha-2:runtime
 org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime
 org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime
 org.apache.maven:maven-artifact:jar:2.0:runtime
 org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Got plugin artifacts:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime,
junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime,
org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Returning artifacts:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime,
junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime,
org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-compiler-plugin:2.0.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Returning artifacts:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime,
junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime,
org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] com.puffy:psi:war:1.0 (selected for null)
[DEBUG]   javax.servlet:servlet-api:jar:2.4:provided (selected for provided)
[DEBUG]   javax.servlet.jsp:jsp-api:jar:2.0:provided (selected for provided)
[DEBUG]   org.tuckey:urlrewrite:jar:2.5.2:runtime (selected for runtime)
[DEBUG]   opensymphony:sitemesh:jar:2.2.1:runtime (selected for runtime)
[DEBUG]   org.springmodules:spring-modules-validation:jar:0.8a:runtime
(selected for runtime)
[DEBUG]     commons-logging:commons-logging:jar:1.0.4:runtime (selected for
runtime)
[DEBUG]     commons-collections:commons-collections:jar:3.1:runtime
(selected for runtime)
[DEBUG]     commons-beanutils:commons-beanutils:jar:1.7.0:runtime (selected
for runtime)
[DEBUG]       commons-logging:commons-logging:jar:1.0.3:runtime (removed -
nearer found: 1.0.4)
[DEBUG]     commons-digester:commons-digester:jar:1.7:runtime (selected for
runtime)
[DEBUG]       commons-beanutils:commons-beanutils:jar:1.6:runtime (removed -
nearer found: 1.7.0)
[DEBUG]       commons-logging:commons-logging:jar:1.0:runtime (removed -
nearer found: 1.0.4)
[DEBUG]       commons-collections:commons-collections:jar:2.1:runtime
(removed - nearer found: 3.1)
[DEBUG] Trying repository central
url = http://repo1.maven.org/maven2
Downloading:
http://repo1.maven.org/maven2/com/puffy/commons/1.0/commons-1.0.pom
[DEBUG] Unable to get resource 'com.puffy:commons:pom:1.0' from repository
central (http://repo1.maven.org/maven2)
org.apache.maven.wagon.ResourceDoesNotExistException: Unable to locate
resource in repository
	at
org.apache.maven.wagon.providers.http.LightweightHttpWagon.fillInputData(LightweightHttpWagon.java:100)
	at org.apache.maven.wagon.StreamWagon.get(StreamWagon.java:68)
	at
org.apache.maven.artifact.manager.DefaultWagonManager.getRemoteFile(DefaultWagonManager.java:543)
	at
org.apache.maven.artifact.manager.DefaultWagonManager.getArtifact(DefaultWagonManager.java:431)
	at
org.apache.maven.artifact.manager.DefaultWagonManager.getArtifact(DefaultWagonManager.java:348)
	at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:192)
	at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:82)
	at
org.apache.maven.project.DefaultMavenProjectBuilder.findModelFromRepository(DefaultMavenProjectBuilder.java:543)
	at
org.apache.maven.project.DefaultMavenProjectBuilder.buildFromRepository(DefaultMavenProjectBuilder.java:234)
	at
org.apache.maven.project.artifact.MavenMetadataSource.retrieve(MavenMetadataSource.java:131)
	at
org.apache.maven.artifact.resolver.DefaultArtifactCollector.recurse(DefaultArtifactCollector.java:514)
	at
org.apache.maven.artifact.resolver.DefaultArtifactCollector.collect(DefaultArtifactCollector.java:138)
	at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolveTransitively(DefaultArtifactResolver.java:429)
	at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolveTransitively(DefaultArtifactResolver.java:400)
	at
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolveTransitively(DefaultArtifactResolver.java:343)
	at
org.apache.maven.plugin.DefaultPluginManager.resolveTransitiveDependencies(DefaultPluginManager.java:1453)
	at
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:520)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:498)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmentForProject(DefaultLifecycleExecutor.java:265)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:191)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:149)
	at org.apache.maven.DefaultMaven.execute_aroundBody0(DefaultMaven.java:223)
	at
org.apache.maven.DefaultMaven.execute_aroundBody1$advice(DefaultMaven.java:304)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:1)
	at
org.apache.maven.embedder.MavenEmbedder.execute_aroundBody2(MavenEmbedder.java:903)
	at
org.apache.maven.embedder.MavenEmbedder.execute_aroundBody3$advice(MavenEmbedder.java:304)
	at org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:1)
	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:176)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:63)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:52)
Caused by: java.io.FileNotFoundException:
http://repo1.maven.org/maven2/com/puffy/commons/1.0/commons-1.0.pom
	at
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1168)
	at
org.apache.maven.wagon.providers.http.LightweightHttpWagon.fillInputData(LightweightHttpWagon.java:83)
	... 29 more
[DEBUG]   com.puffy:commons:jar:1.0:compile (selected for compile)
[DEBUG]   struts-menu:struts-menu:jar:2.4.2:runtime (selected for runtime)
[DEBUG]     commons-beanutils:commons-beanutils:jar:1.6.1:runtime (removed -
nearer found: 1.7.0)
[DEBUG]     commons-collections:commons-collections:jar:3.0:runtime (removed
- nearer found: 3.1)
[DEBUG]     commons-lang:commons-lang:jar:2.1:runtime (selected for runtime)
[DEBUG]   org.apache.velocity:velocity:jar:1.5:runtime (selected for
runtime)
[DEBUG]     oro:oro:jar:2.0.8:runtime (selected for runtime)
[DEBUG]   org.apache.velocity:velocity-tools:jar:1.3:runtime (selected for
runtime)
[DEBUG]     commons-digester:commons-digester:jar:1.8:runtime (removed -
nearer found: 1.7)
[DEBUG]     commons-collections:commons-collections:jar:3.2:runtime (removed
- nearer found: 3.1)
[DEBUG]   javax.servlet:jstl:jar:1.1.2:runtime (selected for runtime)
[DEBUG]   taglibs:standard:jar:1.1.2:runtime (selected for runtime)
[DEBUG]   junit:junit:jar:4.3.1:test (selected for test)
[DEBUG]   htmlunit:htmlunit:jar:1.11:test (selected for test)
[DEBUG]     jaxen:jaxen:jar:1.1:test (selected for test)
[DEBUG]       jaxen:jaxen:jar:1.1-beta-6:test (removed - causes a cycle in
the graph)
[DEBUG]       dom4j:dom4j:jar:1.6.1:test (selected for test)
[DEBUG]       jaxen:jaxen:jar:1.0-FCS:test (removed - causes a cycle in the
graph)
[DEBUG]       jdom:jdom:jar:1.0:test (selected for test)
[DEBUG]       xml-apis:xml-apis:jar:1.3.02:test (selected for test)
[DEBUG]       xerces:xercesImpl:jar:2.6.2:test (selected for test)
[DEBUG]       xom:xom:jar:1.0:test (selected for test)
[DEBUG]         xerces:xmlParserAPIs:jar:2.6.2:test (selected for test)
[DEBUG]         xalan:xalan:jar:2.6.0:test (selected for test)
[DEBUG] While downloading xml-apis:xml-apis:1.0.b2
  This artifact has been relocated to xml-apis:xml-apis:1.0.b2.


[DEBUG]           xml-apis:xml-apis:jar:1.0.b2:test (removed - nearer found:
1.3.02)
[DEBUG]         com.ibm.icu:icu4j:jar:2.6.1:test (selected for test)
[DEBUG]     commons-collections:commons-collections:jar:3.2:test (removed -
nearer found: 3.1)
[DEBUG]     commons-lang:commons-lang:jar:2.2:test (removed - nearer found:
2.1)
[DEBUG]     commons-httpclient:commons-httpclient:jar:3.0.1:test (selected
for test)
[DEBUG]       junit:junit:jar:3.8.1:test (removed - nearer found: 4.3.1)
[DEBUG]       commons-logging:commons-logging:jar:1.0.3:test (removed -
nearer found: 1.0.4)
[DEBUG]       commons-codec:commons-codec:jar:1.2:test (selected for test)
[DEBUG]     commons-codec:commons-codec:jar:1.2:test (removed - nearer
found: 1.3)
[DEBUG]     commons-codec:commons-codec:jar:1.3:test (selected for test)
[DEBUG]     rhino:js:jar:1.6R5:test (selected for test)
[DEBUG]     xerces:xercesImpl:jar:2.6.2:test (selected for test)
[DEBUG]     xerces:xmlParserAPIs:jar:2.6.2:test (selected for test)
[DEBUG]     nekohtml:nekohtml:jar:0.9.5:test (selected for test)
[DEBUG] While downloading xerces:xercesImpl:2.4.0
  This artifact has been relocated to xerces:xercesImpl:2.4.0.


[DEBUG]       xerces:xercesImpl:jar:2.4.0:test (removed - nearer found:
2.6.2)
[DEBUG]     commons-logging:commons-logging:jar:1.1:test (removed - nearer
found: 1.0.4)
[DEBUG]     commons-io:commons-io:jar:1.3:test (selected for test)
[DEBUG]   com.oracle:ojdbc14:jar:10.2.0.2.0:compile (selected for compile)
[DEBUG] Realm for project: com.puffy:psi:war:1.0 not found. Using container
realm instead.
[DEBUG] Retrieving realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Setting realm for plugin descriptor:
org.apache.maven.plugins:maven-compiler-plugin:2.0.2 to:
ClassRealm[/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Getting artifacts used in realm for plugin with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Returning artifacts:

[org.codehaus.plexus:plexus-utils:jar:1.0.4:runtime,
junit:junit:jar:3.8.1:runtime,
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:runtime,
org.codehaus.plexus:plexus-compiler-manager:jar:1.5.3:runtime,
classworlds:classworlds:jar:1.1-alpha-2:runtime,
org.codehaus.plexus:plexus-compiler-api:jar:1.5.3:runtime,
org.codehaus.plexus:plexus-compiler-javac:jar:1.5.3:runtime,
org.apache.maven:maven-artifact:jar:2.0:runtime,
org.apache.maven:maven-plugin-api:jar:2.0:runtime]

for plugin:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Looking up mojo
org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile in realm
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
-
descRealmId=/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] Looked up - org.apache.maven.plugin.CompilerMojo@1a2da17 -
ClassRealm[/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]]
[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile' with basic
configurator -->
[DEBUG]   (f) basedir = C:\Dev\psi
[DEBUG]   (f) buildDirectory = C:\Dev\psi\target
[DEBUG]   (f) classpathElements = [C:\Dev\psi\target\classes, C:\Documents
and
Settings\ninabinde\.m2\repository\javax\servlet\servlet-api\2.4\servlet-api-2.4.jar,
C:\Documents and
Settings\ninabinde\.m2\repository\javax\servlet\jsp\jsp-api\2.0\jsp-api-2.0.jar,
C:\Documents and
Settings\ninabinde\.m2\repository\com\puffy\commons\1.0\commons-1.0.jar,
C:\Documents and
Settings\ninabinde\.m2\repository\com\oracle\ojdbc14\10.2.0.2.0\ojdbc14-10.2.0.2.0.jar]
[DEBUG]   (f) compileSourceRoots = [C:\Dev\psi\src\main\java]
[DEBUG]   (f) compilerId = javac
[DEBUG]   (f) debug = true
[DEBUG]   (f) failOnError = true
[DEBUG]   (f) fork = false
[DEBUG]   (f) optimize = false
[DEBUG]   (f) outputDirectory = C:\Dev\psi\target\classes
[DEBUG]   (f) outputFileName = psi-1.0
[DEBUG]   (f) projectArtifact = com.puffy:psi:war:1.0
[DEBUG]   (f) showDeprecation = false
[DEBUG]   (f) showWarnings = false
[DEBUG]   (f) source = 1.5
[DEBUG]   (f) staleMillis = 0
[DEBUG]   (f) target = 1.5
[DEBUG]   (f) verbose = false
[DEBUG] -- end configuration --
[INFO] [compiler:compile]
[DEBUG] Setting context classloader for plugin to:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
(instance is:
ClassRealm[/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main,
parent: ClassRealm[plexus.core, parent: null]])
[DEBUG] Using compiler 'javac'.
[DEBUG] Source directories: [C:\Dev\psi\src\main\java]
[DEBUG] Classpath: [C:\Dev\psi\target\classes
 C:\Documents and
Settings\ninabinde\.m2\repository\javax\servlet\servlet-api\2.4\servlet-api-2.4.jar
 C:\Documents and
Settings\ninabinde\.m2\repository\javax\servlet\jsp\jsp-api\2.0\jsp-api-2.0.jar
 C:\Documents and
Settings\ninabinde\.m2\repository\com\puffy\commons\1.0\commons-1.0.jar
 C:\Documents and
Settings\ninabinde\.m2\repository\com\oracle\ojdbc14\10.2.0.2.0\ojdbc14-10.2.0.2.0.jar]
[DEBUG] Output directory: C:\Dev\psi\target\classes
[DEBUG] Classpath:
[DEBUG]  C:\Dev\psi\target\classes
[DEBUG]  C:\Documents and
Settings\ninabinde\.m2\repository\javax\servlet\servlet-api\2.4\servlet-api-2.4.jar
[DEBUG]  C:\Documents and
Settings\ninabinde\.m2\repository\javax\servlet\jsp\jsp-api\2.0\jsp-api-2.0.jar
[DEBUG]  C:\Documents and
Settings\ninabinde\.m2\repository\com\puffy\commons\1.0\commons-1.0.jar
[DEBUG]  C:\Documents and
Settings\ninabinde\.m2\repository\com\oracle\ojdbc14\10.2.0.2.0\ojdbc14-10.2.0.2.0.jar
[DEBUG] Source roots:
[DEBUG]  C:\Dev\psi\src\main\java
[INFO] Compiling 22 source files to C:\Dev\psi\target\classes
[DEBUG] disposing managed ClassRealm with id:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] dissociating all components from managed ClassRealm with id:
/plugins/org.mortbay.jetty:maven-jetty-plugin:6.1.5@48/thread:main
[DEBUG] disposing managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-war-plugin:2.1-alpha-1@48/thread:main
[DEBUG] dissociating all components from managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-war-plugin:2.1-alpha-1@48/thread:main
[DEBUG] disposing managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] dissociating all components from managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-clean-plugin:2.2@48/thread:main
[DEBUG] disposing managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] dissociating all components from managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-compiler-plugin:2.0.2@48/thread:main
[DEBUG] disposing managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] dissociating all components from managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-resources-plugin:2.2@48/thread:main
[DEBUG] disposing managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-surefire-plugin:2.3@48/thread:main
[DEBUG] dissociating all components from managed ClassRealm with id:
/plugins/org.apache.maven.plugins:maven-surefire-plugin:2.3@48/thread:main
[ERROR] 

Mojo: 

    org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile

FAILED for project: 

    com.puffy:psi:war:1.0

Reason:

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[6,25]
package org.acegisecurity does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[7,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[15,89]
package org.acegisecurity.ui.webapp does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[19,115]
cannot find symbol
symbol  : class AuthenticationException
location: class
com.puffy.psi.model.article.AuthenticationProcessingFilterEntryPoint

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiSearchController.java:[12,38]
package org.apache.commons.collections does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiSearchController.java:[13,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiSearchController.java:[14,38]
package org.springframework.validation does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiSearchController.java:[15,39]
package org.springframework.web.servlet does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiSearchController.java:[29,7]
cannot access org.springframework.web.servlet.mvc.SimpleFormController
file org\springframework\web\servlet\mvc\SimpleFormController.class not
found
public class psiSearchController extends SearchController {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiSearchController.java:[53,114]
cannot find symbol
symbol  : class BindException
location: class com.puffy.psi.web.controllers.psiSearchController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiSearchController.java:[53,18]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.psiSearchController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[6,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[7,43]
package org.springframework.context.support does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[8,39]
package org.springframework.web.servlet does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[9,43]
package org.springframework.web.servlet.mvc does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[23,56]
cannot find symbol
symbol: class Controller
public class GenericForgotPasswordController implements Controller {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[29,12]
cannot find symbol
symbol  : class MessageSourceAccessor
location: class
com.puffy.psi.web.controllers.GenericForgotPasswordController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[55,11]
cannot find symbol
symbol  : class MessageSourceAccessor
location: class
com.puffy.psi.web.controllers.GenericForgotPasswordController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[59,41]
cannot find symbol
symbol  : class MessageSourceAccessor
location: class
com.puffy.psi.web.controllers.GenericForgotPasswordController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\GenericForgotPasswordController.java:[63,11]
cannot find symbol
symbol  : class ModelAndView
location: class
com.puffy.psi.web.controllers.GenericForgotPasswordController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\FeaturedImageController.java:[3,43]
package org.springframework.web.servlet.mvc does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\FeaturedImageController.java:[14,48]
cannot find symbol
symbol: class Controller
public class FeaturedImageController implements Controller {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\FeaturedImageController.java:[55,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.FeaturedImageController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\CurrentIssueIndexController.java:[13,7]
cannot access org.springframework.web.servlet.mvc.Controller
file org\springframework\web\servlet\mvc\Controller.class not found
public class CurrentIssueIndexController extends SimpleListController<Issue,
Long> {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\VariableViewArticleBoxListController.java:[6,36]
package org.springframework.web.bind does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\VariableViewArticleBoxListController.java:[7,36]
package org.springframework.web.bind does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\VariableViewArticleBoxListController.java:[8,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\VariableViewArticleBoxListController.java:[23,11]
cannot find symbol
symbol  : class ModelAndView
location: class
com.puffy.psi.web.controllers.VariableViewArticleBoxListController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\PublicationsController.java:[24,47]
cannot find symbol
symbol: class Controller
public class PublicationsController implements Controller {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\PublicationsController.java:[54,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.PublicationsController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[9,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[11,55]
package org.springframework.web.servlet.mvc.multiaction does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[27,36]
cannot find symbol
symbol: class MultiActionController
public class HomeController extends MultiActionController {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[45,12]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[62,38]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[66,43]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[70,38]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[86,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[96,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[106,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[126,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[134,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[145,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\HomeController.java:[152,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.HomeController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\ArticleArchiveController.java:[9,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\ArticleArchiveController.java:[24,49]
cannot find symbol
symbol: class Controller
public class ArticleArchiveController implements Controller {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\ArticleArchiveController.java:[54,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.ArticleArchiveController

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[8,25]
package org.acegisecurity does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[9,25]
package org.acegisecurity does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[10,25]
package org.acegisecurity does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[11,39]
package org.acegisecurity.intercept.web does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[12,30]
package org.acegisecurity.vote does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[13,38]
package org.apache.commons.collections does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[21,37]
cannot find symbol
symbol: class AccessDecisionVoter
public class ArticleVoter implements AccessDecisionVoter {

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[30,38]
cannot find symbol
symbol  : class ConfigAttribute
location: class com.puffy.psi.model.article.ArticleVoter

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[38,30]
cannot find symbol
symbol  : class Authentication
location: class com.puffy.psi.model.article.ArticleVoter

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\ArticleVoter.java:[38,88]
cannot find symbol
symbol  : class ConfigAttributeDefinition
location: class com.puffy.psi.model.article.ArticleVoter

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\NewProductsController.java:[10,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\LoginController.java:[20,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.LoginController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiWhitePapersIndexController.java:[19,7]
cannot access org.springframework.web.servlet.mvc.AbstractController
file org\springframework\web\servlet\mvc\AbstractController.class not found
public class psiWhitePapersIndexController extends
WhitePapersIndexController {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiWhitePapersIndexController.java:[22,11]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.psiWhitePapersIndexController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\psiArchivedArticlesListController.java:[22,11]
cannot find symbol
symbol  : class ModelAndView
location: class
com.puffy.psi.web.controllers.psiArchivedArticlesListController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\TopicCenterBoxController.java:[20,46]
cannot find symbol
symbol: class AbstractController
public class TopicCenterBoxController extends AbstractController {

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\TopicCenterBoxController.java:[86,14]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.TopicCenterBoxController

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[3,30]
package org.acegisecurity.vote does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[4,25]
package org.acegisecurity does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[5,25]
package org.acegisecurity does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[6,25]
package org.acegisecurity does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[7,39]
package org.acegisecurity.intercept.web does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[8,38]
package org.apache.commons.collections does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[26,35]
cannot find symbol
symbol: class AccessDecisionVoter
public class MagsVoter implements AccessDecisionVoter {

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[30,34]
cannot find symbol
symbol  : class ConfigAttribute
location: class com.puffy.psi.model.article.MagsVoter

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[37,26]
cannot find symbol
symbol  : class Authentication
location: class com.puffy.psi.model.article.MagsVoter

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\MagsVoter.java:[37,84]
cannot find symbol
symbol  : class ConfigAttributeDefinition
location: class com.puffy.psi.model.article.MagsVoter

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\RateCardEmailController.java:[9,31]
package org.apache.commons.lang does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\RateCardEmailController.java:[10,38]
package org.springframework.validation does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\RateCardEmailController.java:[155,114]
cannot find symbol
symbol  : class BindException
location: class com.puffy.psi.web.controllers.RateCardEmailController

C:\Dev\psi\src\main\java\com\puffy\psi\web\controllers\RateCardEmailController.java:[155,18]
cannot find symbol
symbol  : class ModelAndView
location: class com.puffy.psi.web.controllers.RateCardEmailController

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\psiArticleAccessVerifier.java:[9,33]
package org.acegisecurity.context does not exist

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[20,24]
cannot find symbol
symbol  : variable super
location: class
com.puffy.psi.model.article.AuthenticationProcessingFilterEntryPoint

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[23,12]
cannot find symbol
symbol  : variable StringUtils
location: class
com.puffy.psi.model.article.AuthenticationProcessingFilterEntryPoint

C:\Dev\psi\src\main\java\com\puffy\psi\model\article\AuthenticationProcessingFilterEntryPoint.java:[18,5]
method does not override a method from its superclass







Error stacktrace:
org.apache.maven.ProjectBuildFailureException: Build for project:
com.puffy:psi:war:1.0 failed during execution of mojo:
org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmentForProject(DefaultLifecycleExecutor.java:293)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:191)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:149)
	at org.apache.maven.DefaultMaven.execute_aroundBody0(DefaultMaven.java:223)
	at
org.apache.maven.DefaultMaven.execute_aroundBody1$advice(DefaultMaven.java:304)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:1)
	at
org.apache.maven.embedder.MavenEmbedder.execute_aroundBody2(MavenEmbedder.java:903)
	at
org.apache.maven.embedder.MavenEmbedder.execute_aroundBody3$advice(MavenEmbedder.java:304)
	at org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:1)
	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:176)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:63)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:52)
Caused by: org.apache.maven.plugin.CompilationFailureException: Compilation
failure
	at
org.apache.maven.plugin.AbstractCompilerMojo.execute(AbstractCompilerMojo.java:516)
	at org.apache.maven.plugin.CompilerMojo.execute(CompilerMojo.java:114)
	at
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:577)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:498)
	at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmentForProject(DefaultLifecycleExecutor.java:265)
	... 11 more

[INFO]
------------------------------------------------------------------------
[INFO] BUILD FAILED
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 8 seconds
[INFO] Finished at: Sun May 18 09:31:36 CDT 2008
[INFO] Final Memory: 2M/14M
[INFO]
------------------------------------------------------------------------
 %-|


Tim Kettler wrote:
> 
> Hi,
> 
> More information is needed to solve your problem. Can you post the exact 
> error message maven prints (probably it would be best to post the 
> relevant output from the build log running maven with -X).
> 
> How was the repository poulated? Did maven download the dependencies at 
> one point and now just doesn't see them anymore or did you copy them 
> there manually.
> 
> Did you configure something in your settings.xml regarding the location 
> of your local repository?
> 
> -Tim
> 
> NinaBinde schrieb:
>> My project fails to compile since it is not recognising any of the
>> packages
>> in the repository. The repository is in my local Document and
>> Settings/...
>> folder and I can see all the jars there.  
>> Anybody has any clues as why this would happen? Thanks in advance.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/Maven-not-recognising-the-local-repository-tp17298929p17303808.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven not recognising the local repository

Posted by Tim Kettler <ti...@udo.edu>.
Hi,

More information is needed to solve your problem. Can you post the exact 
error message maven prints (probably it would be best to post the 
relevant output from the build log running maven with -X).

How was the repository poulated? Did maven download the dependencies at 
one point and now just doesn't see them anymore or did you copy them 
there manually.

Did you configure something in your settings.xml regarding the location 
of your local repository?

-Tim

NinaBinde schrieb:
> My project fails to compile since it is not recognising any of the packages
> in the repository. The repository is in my local Document and Settings/...
> folder and I can see all the jars there.  
> Anybody has any clues as why this would happen? Thanks in advance.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org