I noticed that the new features were released as a SNAPSHOT but where is it?
I tried to use the central repository with SNAPSSHOT on and that didn't
work.
Here are my relevant sections:
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
and
<plugin>
<groupId>net.sf</groupId>
<artifactId>stat-scm</artifactId>
<version>1.1.0-SNAPSHOT</version>
<configuration>
<excludes>
<exclude>**/mypackage/myclass*</exclude>
</excludes>
</configuration>
</plugin>
Am I doing something wrong?
|