Discussion:
pom dependences on the antrun plugin
Melo, Alexandre (Alexandre)
2006-12-14 17:39:00 UTC
Permalink
Hi!

I'm trying to call a task using antrun plugin but for this task I would
like to use the pom's dependences in the classpath.
The error returned is: Caused by: taskdef class
com.sun.tools.xjc.XJCTask cannot be found ( this is from jaxb-xjc.jar
in the dependency)
Who can i do it?
In fact I'm trying to use the jaxb 1.0 and I can't use the
maven-jaxb-plugin available in the repository cause it is just for
jaxb2.0, than I'm calling the compiler directly.

following the part of the pom:

<dependency>
<groupId>com.sun.tools.xjc</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>1.0</version>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<tasks>
<property name="src.loc" value="./src" />
<taskdef name="xjc"
classname="com.sun.tools.xjc.XJCTask"
classpathref="maven.dependency.classpath" />

<target name="x">
<xjc
schema="${src.loc}/main/resources/TestScript.xsd"
target="src/main/java/"
package="com.avaya.automation.testscripts" />
</target>
<!--
<ant antfile="${basedir}/build.xml"
inheritRefs="true">
<target name="x" />
</ant>
-->
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Dave Syer
2006-12-14 18:52:36 UTC
Permalink
Have you tried putting the taskdef inside the target that needs it? E.g.

<target name="x">
<taskdef name="xjc"
classname="com.sun.tools.xjc.XJCTask"
classpathref="maven.dependency.classpath" />

<xjc
schema="${src.loc}/main/resources/TestScript.xsd"
target="src/main/java/"
package="com.avaya.automation.testscripts" />
</target>
--
View this message in context: http://www.nabble.com/pom-dependences-on-the-antrun-plugin-tf2822307s177.html#a7878788
Sent from the Maven - Users mailing list archive at Nabble.com.
Melo, Alexandre (Alexandre)
2006-12-14 19:00:45 UTC
Permalink
No, I think the order is ok, if I inverte the order, look what is
happen..

[INFO]
------------------------------------------------------------------------
----
[INFO] Building Maven Quick Start Archetype
[INFO] task-segment: [package]
[INFO]
------------------------------------------------------------------------
----
[INFO] antrun:run {execution: generate-sources}
[INFO] Executing tasks
[ERROR] mojo-execute : antrun:run {execution: generate-sources}
Diagnosis: Error executing ant tasks
FATAL ERROR: Error executing Maven for a project
[ERROR] project-execute : com.csi.vas:vasConfigurationFactory:jar:1.0 (
task-segment: [package] )
Diagnosis: Error executing ant tasks
FATAL ERROR: Error executing Maven for a project
org.apache.maven.lifecycle.LifecycleExecutionException: Error executing
ant tasks
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Default
LifecycleExecutor.java:559)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifec
ycle(DefaultLifecycleExecutor.java:475)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultL
ifecycleExecutor.java:454)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandle
Failures(DefaultLifecycleExecutor.java:306)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(
DefaultLifecycleExecutor.java:273)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifec
ycleExecutor.java:140)
at
org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:441)
at
org.apache.maven.embedder.MavenEmbedder.execute(MavenEmbedder.java:382)
at
org.maven.ide.eclipse.Maven2Executor.main(Maven2Executor.java:68)
Caused by: org.apache.maven.plugin.MojoExecutionException: Error
executing ant tasks
at
org.apache.maven.plugin.antrun.AbstractAntMojo.executeTasks(AbstractAntM
ojo.java:114)
at
org.apache.maven.plugin.antrun.AntRunMojo.execute(AntRunMojo.java:83)
at
org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginMa
nager.java:412)
at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Default
LifecycleExecutor.java:534)
... 8 more
Caused by: Could not create task or type of type: target.

Ant could not find the task or a class this task relies upon.

This is common and has a number of causes; the usual
solutions are to read the manual pages then download and
install needed JAR files, or fix the build file:
- You have misspelt 'target'.
Fix: check your spelling.
- The task needs an external JAR file to execute
and this is not found at the right place in the classpath.
Fix: check the documentation for dependencies.
Fix: declare the task.
- The task is an Ant optional task and the JAR file and/or libraries
implementing the functionality were not found at the time you
yourself built your installation of Ant from the Ant sources.
Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the
task and make sure it contains more than merely a
META-INF/MANIFEST.MF.
If all it contains is the manifest, then rebuild Ant with the
needed
libraries present in ${ant.home}/lib/optional/ , or alternatively,
download a pre-built release version from apache.org
- The build file was written for a later version of Ant
Fix: upgrade to at least the latest release version of Ant
- The task is not an Ant core or optional task
and needs to be declared using <taskdef>.
- You are attempting to use a task defined using
<presetdef> or <macrodef> but have spelt wrong or not
defined it at the point of use

Remember that for JAR files to be visible to Ant tasks implemented
in ANT_HOME/lib, the files must be in the same directory or on the
classpath

Please neither file bug reports on this problem, nor email the
Ant mailing lists, until all of these causes have been explored,
as this is not an Ant bug.
at
org.apache.tools.ant.UnknownElement.getNotFoundException(UnknownElement.
java:493)
at
org.apache.tools.ant.UnknownElement.makeObject(UnknownElement.java:391)
at
org.apache.tools.ant.UnknownElement.maybeConfigure(UnknownElement.java:1
58)
at org.apache.tools.ant.Task.perform(Task.java:363)
at org.apache.tools.ant.Target.execute(Target.java:341)
at
org.apache.maven.plugin.antrun.AbstractAntMojo.executeTasks(AbstractAntM
ojo.java:108)
... 11 more

-----Original Message-----
From: Dave Syer [mailto:***@hotmail.com]
Sent: Thursday, December 14, 2006 3:53 PM
To: ***@maven.apache.org
Subject: Re: pom dependences on the antrun plugin


Have you tried putting the taskdef inside the target that needs it?
E.g.

<target name="x">
<taskdef name="xjc"
classname="com.sun.tools.xjc.XJCTask"
classpathref="maven.dependency.classpath" />

<xjc
schema="${src.loc}/main/resources/TestScript.xsd"
target="src/main/java/"
package="com.avaya.automation.testscripts" />
</target>


--
View this message in context:
http://www.nabble.com/pom-dependences-on-the-antrun-plugin-tf2822307s177
.html#a7878788
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-***@maven.apache.org
For additional commands, e-mail: users-***@maven.apache.org
Dave Syer
2006-12-18 13:07:27 UTC
Permalink
Post by Melo, Alexandre (Alexandre)
No, I think the order is ok, if I inverte the order, look what is
happen..
Hmm. That's funny because I use this pattern quite a lot and I have had
issues, but they always went away when the taskdef was nested (this is
because otherwise Ant will try to create the target before the task is
defined, if they are at the same level). Is your task definitely on the
classpath with the reference you used?
--
View this message in context: http://www.nabble.com/pom-dependences-on-the-antrun-plugin-tf2822307s177.html#a7928402
Sent from the Maven - Users mailing list archive at Nabble.com.
Wendy Smoak
2006-12-15 04:55:46 UTC
Permalink
Post by Melo, Alexandre (Alexandre)
I'm trying to call a task using antrun plugin but for this task I would
like to use the pom's dependences in the classpath.
The error returned is: Caused by: taskdef class
com.sun.tools.xjc.XJCTask cannot be found ( this is from jaxb-xjc.jar
in the dependency)
I can't find jaxb-xjc version 1.0, but trying it with
openejb:jaxb-xjc:2.0EA3, I can get a different error by putting the
<dependency> inside the <plugin> element. So,
<plugin><dependencies><dependency> for the antrun plugin.

With that, I get:
Embedded error: Could not create task or type of type: target.
Ant could not find the task or a class this task relies upon.
instead of
Embedded error: taskdef class com.sun.tools.xjc.XJCTask cannot be found

I'm not sure if that's progress. :)

I also ran across this jaxb plugin while searching for the jar:
https://jaxb.dev.java.net/jaxb-maven2-plugin/

HTH,
--
Wendy
Melo, Alexandre (Alexandre)
2006-12-15 13:59:23 UTC
Permalink
Thanks Wendy, I had the same error
The problem is the lincense to sun products, like jaxb-xjc, this is why
you can't find... There is just available the plugin, maven-jaxb-plugin
1.0 and 1.1 if you want to use the jaxb-xjc or other sun jars you may
deploy on your local repository or in any server you have.

In fact, I have a project using ant (build.xml) using one old version of
jaxb-xjc (1.0) and other old dependences with this version. And the
file.xsd is formated to this version, if I change to a new version (I
have another project with the newest version running) a lot of problem
with the xsd interpretation happens.

And I could call the build.xml file from pom.xml using the antrun
plugin. But, as the build.xml is using the jar files dependences in a
especific directory instead of use this directory I would like to use
the project dependences to eliminate this files from my project and work
only with maven.
I've tried to pass the maven classpath when I was calling the build.xml
from pom but it wasn't work. I don't know why.
The call to build is:
<ant antfile="${basedir}/build.xml" inheritRefs="true">
<target name="x" /> </ant>

But the build.xml is not recognizing the variable and
Reference
maven.plugin.classpath not found


So, in fact - there are two problem. The ant script doesn't want to see
the com.sun.tools.xjc.XJCTask to call the compiler and other is the
transference of classpath between pom and build, or pom to build.

Does Someone know anything about it?



-----Original Message-----
From: Wendy Smoak [mailto:***@gmail.com]
Sent: Friday, December 15, 2006 1:56 AM
To: Maven Users List
Subject: Re: pom dependences on the antrun plugin
Post by Melo, Alexandre (Alexandre)
I'm trying to call a task using antrun plugin but for this task I
would like to use the pom's dependences in the classpath.
The error returned is: Caused by: taskdef class
com.sun.tools.xjc.XJCTask cannot be found ( this is from
jaxb-xjc.jar
Post by Melo, Alexandre (Alexandre)
in the dependency)
I can't find jaxb-xjc version 1.0, but trying it with
openejb:jaxb-xjc:2.0EA3, I can get a different error by putting the
<dependency> inside the <plugin> element. So,
<plugin><dependencies><dependency> for the antrun plugin.

With that, I get:
Embedded error: Could not create task or type of type: target.
Ant could not find the task or a class this task relies upon.
instead of
Embedded error: taskdef class com.sun.tools.xjc.XJCTask cannot be
found

I'm not sure if that's progress. :)

I also ran across this jaxb plugin while searching for the jar:
https://jaxb.dev.java.net/jaxb-maven2-plugin/

HTH,
--
Wendy

---------------------------------------------------------------------
To unsubscribe, e-mail: users-***@maven.apache.org
For additional commands, e-mail: users-***@maven.apache.org
Kenney Westerhof
2006-12-15 14:11:26 UTC
Permalink
Hi,

Just use http://mojo.codehaus.org/jaxb2-maven-plugin/ for jaxb2.

'maven.plugin.classpath' is both not defined as a classpath reference
and neither is it needed - the current classloader already
has everything in there. you just define <depencencies> in the <plugin>
declaration in the project pom and it should work.
Only 'maven.SCOPE.classpath' is defined.

Wendy: run with -X to see why ant fails - you should then see a stacktrace
with a ClassNotFoundException somewhere.

Also the jaxb2/xjc jars are in the dev.java.net repo:

<repository>
<id>java.net</id>
<name>SUN Maven Repository</name>
<url>https://maven-repository.dev.java.net/nonav/repository/</url>
<layout>legacy</layout>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>

The maven-jaxb2 plugin in there has exactly the same semantics as the mojo one.
There's also a 3rd jaxb plugin out here. I'm sticking with the mojo one since I can
modify it ;)

-- Kenney
Post by Melo, Alexandre (Alexandre)
Thanks Wendy, I had the same error
The problem is the lincense to sun products, like jaxb-xjc, this is why
you can't find... There is just available the plugin, maven-jaxb-plugin
1.0 and 1.1 if you want to use the jaxb-xjc or other sun jars you may
deploy on your local repository or in any server you have.
In fact, I have a project using ant (build.xml) using one old version of
jaxb-xjc (1.0) and other old dependences with this version. And the
file.xsd is formated to this version, if I change to a new version (I
have another project with the newest version running) a lot of problem
with the xsd interpretation happens.
And I could call the build.xml file from pom.xml using the antrun
plugin. But, as the build.xml is using the jar files dependences in a
especific directory instead of use this directory I would like to use
the project dependences to eliminate this files from my project and work
only with maven.
I've tried to pass the maven classpath when I was calling the build.xml
from pom but it wasn't work. I don't know why.
<ant antfile="${basedir}/build.xml" inheritRefs="true">
<target name="x" /> </ant>
But the build.xml is not recognizing the variable and
Reference
maven.plugin.classpath not found
So, in fact - there are two problem. The ant script doesn't want to see
the com.sun.tools.xjc.XJCTask to call the compiler and other is the
transference of classpath between pom and build, or pom to build.
Does Someone know anything about it?
-----Original Message-----
Sent: Friday, December 15, 2006 1:56 AM
To: Maven Users List
Subject: Re: pom dependences on the antrun plugin
Post by Melo, Alexandre (Alexandre)
I'm trying to call a task using antrun plugin but for this task I
would like to use the pom's dependences in the classpath.
The error returned is: Caused by: taskdef class
com.sun.tools.xjc.XJCTask cannot be found ( this is from
jaxb-xjc.jar
Post by Melo, Alexandre (Alexandre)
in the dependency)
I can't find jaxb-xjc version 1.0, but trying it with
openejb:jaxb-xjc:2.0EA3, I can get a different error by putting the
<dependency> inside the <plugin> element. So,
<plugin><dependencies><dependency> for the antrun plugin.
Embedded error: Could not create task or type of type: target.
Ant could not find the task or a class this task relies upon.
instead of
Embedded error: taskdef class com.sun.tools.xjc.XJCTask cannot be
found
I'm not sure if that's progress. :)
https://jaxb.dev.java.net/jaxb-maven2-plugin/
HTH,
--
Wendy
---------------------------------------------------------------------
---------------------------------------------------------------------
G***@tietoenator.com
2006-12-15 14:36:57 UTC
Permalink
Hi,

When I try to add a project I get this answer:
You are not authorized to access the requested URL. Please verify that
the correct username and password are provided.

How can I provide the needed username and password?

The url is correct and when I run it in a browser I get prompted for
user and password.

Regards
Gunnar
Carlos Sanchez
2006-12-15 19:32:31 UTC
Permalink
Standard http url format
Post by G***@tietoenator.com
Hi,
You are not authorized to access the requested URL. Please verify that
the correct username and password are provided.
How can I provide the needed username and password?
The url is correct and when I run it in a browser I get prompted for
user and password.
Regards
Gunnar
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
G***@tietoenator.com
2006-12-18 09:24:48 UTC
Permalink
Hi again,

I've managed to login, but now I get this problem:
Server certificate verification failed: certificate issued for a different hostname, issuer is not trusted

The error is correct but the site is just done for some internal testing and I would like to accept the certificate.
Is that possible?

(The person who set up the svn-server is not around for a week and I assume that we could get some other problems if we changed the server certificate.)

Regards
Gunnar
-----Ursprungligt meddelande-----
Carlos Sanchez
Skickat: den 15 december 2006 20:33
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
Standard http url format
Post by G***@tietoenator.com
Hi,
You are not authorized to access the requested URL. Please
verify that
Post by G***@tietoenator.com
the correct username and password are provided.
How can I provide the needed username and password?
The url is correct and when I run it in a browser I get
prompted for
Post by G***@tietoenator.com
user and password.
Regards
Gunnar
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
---------------------------------------------------------------------
Carlos Sanchez
2006-12-18 12:25:14 UTC
Permalink
you need to use svn command line first to approve the certificate
Post by G***@tietoenator.com
Hi again,
Server certificate verification failed: certificate issued for a different hostname, issuer is not trusted
The error is correct but the site is just done for some internal testing and I would like to accept the certificate.
Is that possible?
(The person who set up the svn-server is not around for a week and I assume that we could get some other problems if we changed the server certificate.)
Regards
Gunnar
-----Ursprungligt meddelande-----
Carlos Sanchez
Skickat: den 15 december 2006 20:33
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
Standard http url format
Post by G***@tietoenator.com
Hi,
You are not authorized to access the requested URL. Please
verify that
Post by G***@tietoenator.com
the correct username and password are provided.
How can I provide the needed username and password?
The url is correct and when I run it in a browser I get
prompted for
Post by G***@tietoenator.com
user and password.
Regards
Gunnar
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
---------------------------------------------------------------------
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
Pawel Niemiec
2006-12-19 14:21:54 UTC
Permalink
Hi,



I'm running the Developer Activities Plugin goal like this:



maven maven-developer-activity-plugin:report



The result seems to be fine:



BUILD SUCCESSFUL

Total time: 2 seconds

Finished at: Tue Dec 19 14:42:23 CET 2006



But I can't find any report anywhere.

Does anyone knows where it's generated or what are the conditions or properties to set ?




Paweł Niemiec
Software Engineer
  
AuSystems Sp. z o.o. Poland
Wynalazek 4 St.
PL-02-667 Warsaw
tel. (+48) 22 60 70 660
fax. (+48) 22 60 70 661
G***@tietoenator.com
2006-12-18 13:54:05 UTC
Permalink
Hi Carlos,

Can you elaborate that a bit. Which svn command should I use and should I do it in a special directory?

I tried to do svn co https:...../trunk proj in a tmp directory and the project was checked out with no password prompt.
But I still get the same error from Maestro.

Regards
Gunnar
-----Ursprungligt meddelande-----
Carlos Sanchez
Skickat: den 18 december 2006 13:25
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
you need to use svn command line first to approve the certificate
Post by G***@tietoenator.com
Hi again,
Server certificate verification failed: certificate issued for a
different hostname, issuer is not trusted
The error is correct but the site is just done for some
internal testing and I would like to accept the certificate.
Post by G***@tietoenator.com
Is that possible?
(The person who set up the svn-server is not around for a
week and I
Post by G***@tietoenator.com
assume that we could get some other problems if we changed
the server
Post by G***@tietoenator.com
certificate.)
Regards
Gunnar
-----Ursprungligt meddelande-----
Sanchez
Skickat: den 15 december 2006 20:33
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
Standard http url format
Post by G***@tietoenator.com
Hi,
You are not authorized to access the requested URL. Please
verify that
Post by G***@tietoenator.com
the correct username and password are provided.
How can I provide the needed username and password?
The url is correct and when I run it in a browser I get
prompted for
Post by G***@tietoenator.com
user and password.
Regards
Gunnar
--------------------------------------------------------------------
Post by G***@tietoenator.com
-
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
--------------------------------------------------------------------
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
---------------------------------------------------------------------
Emmanuel Venisse
2006-12-18 13:57:27 UTC
Permalink
you need to run svn co command with the same user used by continuum

Emmanuel
Post by G***@tietoenator.com
Hi Carlos,
Can you elaborate that a bit. Which svn command should I use and should I do it in a special directory?
I tried to do svn co https:...../trunk proj in a tmp directory and the project was checked out with no password prompt.
But I still get the same error from Maestro.
Regards
Gunnar
-----Ursprungligt meddelande-----
Carlos Sanchez
Skickat: den 18 december 2006 13:25
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
you need to use svn command line first to approve the certificate
Post by G***@tietoenator.com
Hi again,
Server certificate verification failed: certificate issued for a
different hostname, issuer is not trusted
The error is correct but the site is just done for some
internal testing and I would like to accept the certificate.
Post by G***@tietoenator.com
Is that possible?
(The person who set up the svn-server is not around for a
week and I
Post by G***@tietoenator.com
assume that we could get some other problems if we changed
the server
Post by G***@tietoenator.com
certificate.)
Regards
Gunnar
-----Ursprungligt meddelande-----
Sanchez
Skickat: den 15 december 2006 20:33
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
Standard http url format
Post by G***@tietoenator.com
Hi,
You are not authorized to access the requested URL. Please
verify that
Post by G***@tietoenator.com
the correct username and password are provided.
How can I provide the needed username and password?
The url is correct and when I run it in a browser I get
prompted for
Post by G***@tietoenator.com
user and password.
Regards
Gunnar
--------------------------------------------------------------------
Post by G***@tietoenator.com
-
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
--------------------------------------------------------------------
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
---------------------------------------------------------------------
---------------------------------------------------------------------
Carlos Sanchez
2006-12-18 14:09:35 UTC
Permalink
any svn command run as the user running continuum will prompt you for
the certificate and then you can accept. svn co is fine but probably
easier with svn ls
Post by Emmanuel Venisse
you need to run svn co command with the same user used by continuum
Emmanuel
Post by G***@tietoenator.com
Hi Carlos,
Can you elaborate that a bit. Which svn command should I use and should I do it in a special directory?
I tried to do svn co https:...../trunk proj in a tmp directory and the project was checked out with no password prompt.
But I still get the same error from Maestro.
Regards
Gunnar
-----Ursprungligt meddelande-----
Carlos Sanchez
Skickat: den 18 december 2006 13:25
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
you need to use svn command line first to approve the certificate
Post by G***@tietoenator.com
Hi again,
Server certificate verification failed: certificate issued for a
different hostname, issuer is not trusted
The error is correct but the site is just done for some
internal testing and I would like to accept the certificate.
Post by G***@tietoenator.com
Is that possible?
(The person who set up the svn-server is not around for a
week and I
Post by G***@tietoenator.com
assume that we could get some other problems if we changed
the server
Post by G***@tietoenator.com
certificate.)
Regards
Gunnar
-----Ursprungligt meddelande-----
Sanchez
Skickat: den 15 december 2006 20:33
Till: Maven Users List
Ämne: Re: Help can't add project to Maestro continuum
Standard http url format
Post by G***@tietoenator.com
Hi,
You are not authorized to access the requested URL. Please
verify that
Post by G***@tietoenator.com
the correct username and password are provided.
How can I provide the needed username and password?
The url is correct and when I run it in a browser I get
prompted for
Post by G***@tietoenator.com
user and password.
Regards
Gunnar
--------------------------------------------------------------------
Post by G***@tietoenator.com
-
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
--------------------------------------------------------------------
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
---------------------------------------------------------------------
---------------------------------------------------------------------
---------------------------------------------------------------------
--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride
G***@tietoenator.com
2006-12-20 09:16:38 UTC
Permalink
Hi,

Thanks to Carlos and Emmanuel to point me in the right direction!

I can now add the project and it picks up the changes I've done in the subversion.

I now have another issue.

I added a new goal "clean site" with a new schedule to run once at 22:30 each day.
But this new definition is never run even when I do a forced run.
There are three difference between the two definitions.
Goals: clean site versus clean install.
Schedule: once per night versus once per hour
Default: false versus true.


Any suggestion?

Regards
Gunnar
-----Ursprungligt meddelande-----
Carlos Sanchez
Skickat: den 18 december 2006 15:10
Till: Maven Users List
Ämne: Re: SV: Help can't add project to Maestro continuum
any svn command run as the user running continuum will prompt
you for the certificate and then you can accept. svn co is
fine but probably easier with svn ls
Post by Emmanuel Venisse
you need to run svn co command with the same user used by continuum
Emmanuel
Loading...