Repository download through FTP

2008-05-19 Thread Sang-Jea Shin
I have to setup maven environment where cannot access central repository
(only LAN)
So, I'm tring download maven repository and configure mirror site for
development team.
I found some article like this.

--

http://maven.apache.org/guides/mini/guide-mirror-settings.html

 FTP access

The repository is available through FTP at *
ftp://mirrors.ibiblio.org/pub/packages/maven2*

--

According to avobe article, I try ftp access.

But...

--

D:\Documents and Settings\bomberftp mirrors.ibiblio.org
Connected to mirrors.ibiblio.org.
220 FTP Server ready.
User (mirrors.ibiblio.org:(none)):

--

Do you know account and password?

Is it possible to use maven on cannot access central?

How can I get full repository (6GB)?


rsync on cygwin

2008-05-19 Thread Sang-Jea Shin
My platform is Windows XP Professional.
After install cygwin, I'm trying rsync like this.
-

[EMAIL PROTECTED] /maven2
$ rsync -v -t -l -r mirrors.ibiblio.org::maven2 /maven2
  -
  Welcome to the ibiblio.org mirrored software server!
  Note that the 'gnuwww' module was recently removed
  per discussion with the volunteers running gnu.org.
  Please go there if you wish to continue mirroring
  their web site.  In its stead we are now offering
  the GNU Alpha archive.
  -

receiving file list ...

-

But nothing changed, just waiting.
Should I wait more? Or Is it impossible rsync on cygwin?


Re: What does SNAPSHOT means?

2007-02-25 Thread Sang-Jea Shin

Thanks for good advice. :-)

It seems like alpha or nightly build version, right?

I download ebook you said, thank you very much.



2007/2/25, Jo Vandermeeren [EMAIL PROTECTED]:


Hi there..

Glad to see that you're starting with maven..

A SNAPSHOT version defines work in progress.

It's good practice to use a version like 1.0-SNAPSHOT when you've net
yet
reached the 1.0 milestone release.
As soon as you've reached your milestone and released a 1.0 version, you
start working on version 1.1-SNAPSHOT for example..
When you see a POM or artifact with SNAPSHOT in its version, you know
it's
work in progress and the build results might not be reproducible.

If you stick with this versioning pattern maven will check all your
dependencies and alert you when you have SNAPSHOT dependencies before
allowing a release to succeed.
This is again to prevent unreproducible builds..

If you want to learn more about maven, check the website's documentation
and
mergere.com's Better Builds With Maven ebook which is full of tips to
get
you on your way quickly..

Good luck
Jo


On 2/25/07, 신상재 [EMAIL PROTECTED] wrote:

 I'm a beginner for maven.
 I tried first example.

 mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app

 It works, displayed like this.

 
 [INFO]



 [INFO] Using following parameters for creating Archetype:
 maven-archetype-quickstart:RELEASE
 [INFO]



 [INFO] Parameter: groupId, Value: com.mycompany.app
 [INFO] Parameter: packageName, Value: com.mycompany.app
 [INFO] Parameter: package, Value: org.codelabor.app
 [INFO] Parameter: artifactId, Value: my-app
 [INFO] Parameter: basedir, Value: C:\workspace
 [INFO] Parameter: version, Value: 1.0-SNAPSHOT
 

 But I don't know what does SNAPSHOT means on version part.

 What is SNAPSHOT?