Unique Snapshot Version of Gatling?

Hi Stéphane,

We are currently using the snapshot version, which is great! I believe Gatling is using Maven 3, so what do you think about to have a timestamp for each snapshot version? i think maven 3 supports this:

<distributionManagement>
<snapshotRepository>
<id>maven2-snapshot-repository</id>
<name>Maven2 Snapshot Repository</name>
<url>scp://host/snapshots/</url>
**<uniqueVersion>false</uniqueVersion>**
</snapshotRepository>
</distributionManagement>

Reason of this is we may not want to live on the edge, once we have a "stable" snapshot version we may keep using it until a new milestone comes out. Ideas? This is more for discussion.

Thanks,
Kan

We now build with sbt, not maven.
We could consider using https://github.com/sbt/sbt-unique-version, but I’m afraid that this would make things harder for other users would want the latest. They’d have to depend on this plugin too.