Modified:
/GettingStajistics.wiki
=======================================
--- /GettingStajistics.wiki Mon Jun 20 19:55:34 2011
+++ /GettingStajistics.wiki Sun Jul 10 15:01:50 2011
@@ -6,9 +6,11 @@
== Getting Stajistics ==
+The latest stable release of Stajistics is version 0.3. The current
development version of Stajistics is 0.4-SNAPSHOT.
+
Release binaries and source packages are available in the downloads
section (look up).
-Release builds and snapshot builds are also available through the Maven
repository (see below).
+Releases and snapshot builds are also available through the
[http://repo1.maven.org/maven2|Maven Central repository] (see below).
== Installing Stajistics ==
@@ -20,47 +22,36 @@
==== Releases ====
-NOTE: THE MAVEN REPOSITORY IS CURRENTLY DOWN. PLEASE DOWNLOAD ARTEFACTS
FROM THE DOWNLOADS SECTION FOR THE TIME BEING. Sorry :(
-
-Add the following to your repositories:
+Stajistics releases are available from the [http://repo1.maven.org/maven2|
Maven Central repository]. (Note: no releases have been published as of
this time. A release is planned shortly.)
+
+Add the following to your dependencies element of your pom:
{{{
- <repositories>
- <repository>
- <id>stajistics</id>
- <url>http://repository.stajistics.org/releases</url>
- </repository>
- </repositories>
-}}}
-
-Add the following to your dependencies:
-
-{{{
<dependency>
<groupId>org.stajistics</groupId>
<artifactId>stajistics-core</artifactId>
- <version>[version]</version>
+ <version>0.3</version>
</dependency>
}}}
==== Snapshots ====
-Add the following to your repositories:
+Stajistics nightly snapshot artifacts are hosted by Sonatype OSS. Ensure
the following is present in your repositories element of your pom:
{{{
<repository>
- <id>stajistics</id>
- <url>http://repository.stajistics.org/snapshots</url>
+ <id>sonatype-nexus-snapshots</id>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
}}}
-Add the following to your dependencies:
+Add the following to your dependencies element of your pom:
{{{
<dependency>
<groupId>org.stajistics</groupId>
<artifactId>stajistics-core</artifactId>
- <version>[version]-SNAPSHOT</version>
+ <version>0.4-SNAPSHOT</version>
</dependency>
}}}