RE: Could we delete old version jar in local repository by mvn ?

2012-01-11 Thread Rueegg Alexander
Hi! I think you should even in this case use a different directory on your local filesystem to deploy your proprietary artifacts to. Isn't that best practise? Think of making backups of your deployed artifacts and not of the whole cached artifacts from the internet. Mixing things in the same

Re: Could we delete old version jar in local repository by mvn ?

2012-01-11 Thread Stephen Connolly
actually, no, in that case I would recommend downloading a repository manager and running it locally. Running Maven without a repository manager is like driving a car with a 24inch spike pointing out of the middle of the steering wheel On 11 January 2012 12:31, Rueegg Alexander a...@bdal.de

Re: Could we delete old version jar in local repository by mvn ?

2012-01-11 Thread Ron Wheeler
On 11/01/2012 8:33 AM, Stephen Connolly wrote: actually, no, in that case I would recommend downloading a repository manager and running it locally. Running Maven without a repository manager is like driving a car with a 24inch spike pointing out of the middle of the steering wheel And a

RE: Could we delete old version jar in local repository by mvn ?

2012-01-11 Thread Rueegg Alexander
...@gmail.com] Sent: Mittwoch, 11. Januar 2012 14:33 To: Maven Users List Subject: Re: Could we delete old version jar in local repository by mvn ? actually, no, in that case I would recommend downloading a repository manager and running it locally. Running Maven without a repository manager

Re: Could we delete old version jar in local repository by mvn ?

2012-01-11 Thread Stephen Connolly
version jar in local repository by mvn ? actually, no, in that case I would recommend downloading a repository manager and running it locally. Running Maven without a repository manager is like driving a car with a 24inch spike pointing out of the middle of the steering wheel On 11 January

Re: Could we delete old version jar in local repository by mvn ?

2012-01-05 Thread Mark H. Wood
On Wed, Jan 04, 2012 at 10:19:15PM +0100, Ansgar Konermann wrote: Am 04.01.2012 05:02, schrieb zuxiong lin: Append like: repository\org\springframework\spring-core -3.0.5.RELEASE -3.0.6.RELEASE -3.1.0.RELEASE I want to remove 3.0.5 and 3.0.6. The local maven repository is an

Re: Could we delete old version jar in local repository by mvn ?

2012-01-05 Thread Stephen Connolly
On 5 January 2012 13:41, Mark H. Wood mw...@iupui.edu wrote: On Wed, Jan 04, 2012 at 10:19:15PM +0100, Ansgar Konermann wrote: Am 04.01.2012 05:02, schrieb zuxiong lin: I want to remove 3.0.5 and 3.0.6. The local maven repository is an artifact cache. Why do you want to remove anything from

Re: Could we delete old version jar in local repository by mvn ?

2012-01-04 Thread Ansgar Konermann
Am 04.01.2012 05:02, schrieb zuxiong lin: Append like: repository\org\springframework\spring-core -3.0.5.RELEASE -3.0.6.RELEASE -3.1.0.RELEASE I want to remove 3.0.5 and 3.0.6. The local maven repository is an artifact cache. Why do you want to remove anything from this cache? This does

Re: Could we delete old version jar in local repository by mvn ?

2012-01-04 Thread zuxiong lin
Because of my not enough disk space... 2012/1/5 Ansgar Konermann ansgar.konerm...@googlemail.com Am 04.01.2012 05:02, schrieb zuxiong lin: Append like: repository\org\springframework\spring-core -3.0.5.RELEASE -3.0.6.RELEASE -3.1.0.RELEASE I want to remove 3.0.5 and 3.0.6. The

Re: Could we delete old version jar in local repository by mvn ?

2012-01-04 Thread Ansgar Konermann
Am 05.01.2012 02:07 schrieb zuxiong lin linzuxiong1...@gmail.com: Because of my not enough disk space... Then it's okay. Maven will re-download what it needs. A. 2012/1/5 Ansgar Konermann ansgar.konerm...@googlemail.com Am 04.01.2012 05:02, schrieb zuxiong lin: Append like:

Could we delete old version jar in local repository by mvn ?

2012-01-03 Thread zuxiong lin
Is it possible? Thanks.

Re: Could we delete old version jar in local repository by mvn ?

2012-01-03 Thread Jesse Farinacci
Greetings, On Tue, Jan 3, 2012 at 9:14 PM, zuxiong lin linzuxiong1...@gmail.comwrote: Is it possible? http://maven.apache.org/plugins/maven-dependency-plugin/purge-local-repository-mojo.html -Jesse -- There are 10 types of people in this world, those that can read binary and those that can

Re: Could we delete old version jar in local repository by mvn ?

2012-01-03 Thread zuxiong lin
Append like: repository\org\springframework\spring-core -3.0.5.RELEASE -3.0.6.RELEASE -3.1.0.RELEASE I want to remove 3.0.5 and 3.0.6. 2012/1/4 zuxiong lin linzuxiong1...@gmail.com Is it possible? Thanks.

Re: Could we delete old version jar in local repository by mvn ?

2012-01-03 Thread Jesse Farinacci
Greetings, On Tue, Jan 3, 2012 at 11:02 PM, zuxiong lin linzuxiong1...@gmail.comwrote: Append like: repository\org\springframework\spring-core -3.0.5.RELEASE -3.0.6.RELEASE -3.1.0.RELEASE I want to remove 3.0.5 and 3.0.6. I don't think this is possible with an existing plugin. I don't

Re: Could we delete old version jar in local repository by mvn ?

2012-01-03 Thread Julien PLAQUEVENT
If I understand well, it is possible ! If you want to do it manually, go to your home directory's .m2 hidden folder, then remove whatever you want from the repository folder. If you want to do it from a project pom, just use maven-clean-plugin on