Martijn Dashorst wrote:
Basically I just read a message that the maven repo for our snapshots
at wicketstuff.org could be cleaned (to avoid problems with too many
versions lying around).
Can/should we rm -rf the whole repository prior to a wicket build?
Nope, bad plan:
- We build different versions, so we'd need to vape 1.2.x and 1.3.x
separately, rather than the whole thing, even if this was a good
idea, which it isn't.
- You don't want to vape things prior to a build, as if someone comes
along while you're building they won't be able to download. Bad.
- We already have the flag set on Maven to build a single SNAPSHOT
rather than dated versions, so we're not wasting any space with this.
IMHO, we should:
- Not serve up all the dependencies - we should just have
org/apache/wicket/ and wicket/ in there.
- Remove the 1.3-SNAPSHOT stuff (1.3.0-incubating-SNAPSHOT is current).
No one should be using 1.3-SNAPSHOT; we should actively break this.
- Remove the 2.0-SNAPSHOT stuff (this one's open to debate).
Al