They aren't shell scripts, actually... they're Ant scripts.

This is from EJ Ciramella:
<target name="build">
 <checksum algorithm="sha1" forceoverwrite="true">
  <fileset dir=".">
    <include name="**/*.pom"/>
    <include name="**/*.jar"/>
    <include name="**/*.xml"/>
  </fileset>
 </checksum>
    <checksum algorithm="md5" forceoverwrite="true">
  <fileset dir=".">
    <include name="**/*.pom"/>
    <include name="**/*.jar"/>
    <include name="**/*.xml"/>
  </fileset>
 </checksum>
</target>

And this is from Gunther Popp:
<project name="prepare-repo" basedir="D:\mvn_repos\plugin" default="run">
 <target name="run">
   <move todir="${basedir}" verbose="true">
     <fileset dir="${basedir}">
       <include name="**/maven-metadata-central.*"/>
     </fileset>
     <regexpmapper from="(.*)maven-metadata-central.(.*)"
to="\1maven-metadata.\2"/>
   </move>
 </target>
</project>

You'll need to customize them a little for your specific use, but this
should get you on the right path.

Wayne

On 11/16/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> -----Original Message-----
> From: Wayne Fay [mailto:[EMAIL PROTECTED]
> Sent: 16 November 2006 17:02
> To: Maven Users List
> Subject: Re: [M2] Howto Set Up Quickly an Offline Internal Repository?
>
> We've had this discussion before on this list, and I know
> someone posted a way to convert a local repo into a "remote"
> repo with some shell scripts.
>

Well if there are scripts I cannot find them in nabble or otherwise.

--
Peter Pilgrim
UBS Investment Bank,
PTS Portal / IT FIRC OPS LDN,
100 Liverpool Street, London EC2M 2RH, United Kingdom
+44 (0) 20 75 75692
:: Java EE / E-Commerce / Enterprise Integration / Development ::

Visit our website at http://www.ubs.com

This message contains confidential information and is intended only
for the individual named.  If you are not the named addressee you
should not disseminate, distribute or copy this e-mail.  Please
notify the sender immediately by e-mail if you have received this
e-mail by mistake and delete this e-mail from your system.

E-mail transmission cannot be guaranteed to be secure or error-free
as information could be intercepted, corrupted, lost, destroyed,
arrive late or incomplete, or contain viruses.  The sender therefore
does not accept liability for any errors or omissions in the contents
of this message which arise as a result of e-mail transmission.  If
verification is required please request a hard-copy version.  This
message is provided for informational purposes and should not be
construed as a solicitation or offer to buy or sell any securities or
related financial instruments.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to