I get this in continuum, I am using Maven 2 and SVN. I can run my maven
setup with no problem from the command line.
 
org.apache.maven.continuum.execution.ContinuumBuildExecutorException:
Could not find Maven project descriptor. at
org.apache.maven.continuum.execution.maven.m2.MavenTwoBuildExecutor.upda
teProjectFromCheckOut(MavenTwoBuildExecutor.java:111) at
org.apache.maven.continuum.core.action.UpdateProjectFromWorkingDirectory
ContinuumAction.execute(UpdateProjectFromWorkingDirectoryContinuumAction
.java:62) at
org.apache.maven.continuum.buildcontroller.DefaultBuildController.build(
DefaultBuildController.java:169) at
org.apache.maven.continuum.buildcontroller.BuildProjectTaskExecutor.exec
uteTask(BuildProjectTaskExecutor.java:53) at
org.codehaus.plexus.taskqueue.execution.ThreadedTaskQueueExecutor$Execut
orRunnable.run(ThreadedTaskQueueExecutor.java:103) at
java.lang.Thread.run(Thread.java:595)
 
 
Here is my pom.xml.
 
<?

xml version="1.0" encoding ="UTF-8"?><project> 

<modelVersion>4.0.0</ modelVersion> 

<groupId>my-proj</ groupId> 

<artifactId>TestMaven</ artifactId> 

<version>0.0.1</ version> 

<description></description > 

<packaging>jar</ packaging> 

<scm> 

<connection>scm:svn:svn://css-paps02/tmpSetup/projectName </connection> 

<developerConnection>scm:svn:svn://css-paps02/tmpSetup/projectName/trunk
</developerConnection> 

</scm> 

<ciManagement> 

<system>continuum</ system> 

<notifiers> 

<notifier> 

<configuration> 

<address>[EMAIL PROTECTED] </address> 

</configuration> 

</notifier> 

</notifiers> 

</ciManagement> 

<dependencies> 

<dependency> 

<groupId>junit</ groupId> 

<artifactId>junit</ artifactId> 

<version>3.8.1</ version> 

</dependency> 

</dependencies> 

<build> 

<sourceDirectory>src/</ sourceDirectory> 

<outputDirectory>build/dist</ outputDirectory> 

<testSourceDirectory>test/</ testSourceDirectory> 

<testOutputDirectory>build/test</ testOutputDirectory> 

</build> 
</

project> 

Reply via email to