Ok, I switched to a local staging directory and that URL
(matzew::default::file:/trinidad-stage) worked.

But..... I figured out another bug in Maven. I searched the maven list
and came to an issue that another user was also seeing. The source-jar
build was skipped, after the size has reached 4 GB :)

The work around came from Apache Jakarta:
         <plugin>
            <!-- This should possibly better be done by using a resource
                     definition. However, if we declare a resource with
                     ${basedir} as the base directory, then the
                     maven-source-plugin will add the whole directory to
                     its contents.
            -->
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>

          <execution>
            <phase>generate-resources</phase>
            <configuration>
             <tasks>
               <copy todir="${project.build.outputDirectory}/META-INF">
                 <fileset dir="${basedir}">
                   <include name="LICENSE.txt" />
                   <include name="NOTICE.txt" />

                 </fileset>
               </copy>
             </tasks>
           </configuration>
           <goals>
             <goal>run</goal>
           </goals>
         </execution>

       </executions>
     </plugin>

I pinging the codehaus guys regarding the seen issue.

-Matthias

On 2/13/07, Matthias Wessendorf <[EMAIL PROTECTED]> wrote:
my main concern is the

altDeploymentRepository = null

line ...

that sounds like the other param is also ignored.

Ok, I'll check all your feedback tomorrow morning.
Thanks so far.

-Matze

On 2/13/07, Manfred Geiler <[EMAIL PROTECTED]> wrote:
> Try a manual scp connect first to add the server fingerprint to your
> ssh "trusted server list".
>
> --Manfred
>
>
> On 2/13/07, Matthias Wessendorf <[EMAIL PROTECTED]> wrote:
> > one more ... now getting this:
> >
> > [INFO] [deploy:deploy]
> > altDeploymentRepository = null
> > The authenticity of host 'people.apache.org' can't be established.
> > DSA key fingerprint is 79:7c:cb:6a:44:47:b2:ef:5c:66:28:d7:40:0d:b1:f9.
> >
> >
> > I've done this
> >
> > mvn release:perform -Prelease,staging -Ddeploy.altRepository=theRepoURL
> >
> > what's wrong here ?
> >
> >
> > Thanks,
> > Matthias
> >
>


--
Matthias Wessendorf
http://tinyurl.com/fmywh

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com



--
Matthias Wessendorf
http://tinyurl.com/fmywh

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com

Reply via email to