Skip to content

Commit 3cab807

Browse files
committed
New version of snapshot repo documentation
1 parent 6e4f9f7 commit 3cab807

File tree

2 files changed

+42
-26
lines changed

2 files changed

+42
-26
lines changed

src/ozark/docs/install-snapshots.adoc

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: Install Guide for Java EE
3+
template: page.html
4+
---
5+
6+
[[setting-up-the-snapshot-repository]]
7+
== Setting up the snapshot repository
8+
9+
The MVC specification and Ozark are under active development. Therefore, we recommend to use the latest
10+
snapshots for your experiments. This will ensure, that you are using the latest version of both the API
11+
and the implementation.
12+
13+
Sonatype OSS snapshot repository
14+
15+
To get the latest snapshots for your project, you will have to add
16+
the https://oss.sonatype.org/content/repositories/snapshots[Sonatype OSS snapshot repository] to your POM.
17+
To do so, just add the following configuration to your `pom.xml`:
18+
19+
[source,xml]
20+
----
21+
<repositories>
22+
<repository>
23+
<id>sonatype-oss-snapshots</id>
24+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
25+
<releases>
26+
<enabled>false</enabled>
27+
</releases>
28+
<snapshots>
29+
<enabled>true</enabled>
30+
</snapshots>
31+
</repository>
32+
</repositories>
33+
----
34+
35+
By adding this repository to your POM, you will be able to use the snapshot versions of the various artifacts:
36+
37+
* **Specification:**
38+
** Stable version: `{{versions.spec.latest}}`
39+
** Snapshot version: `{{versions.spec.develop}}`
40+
* **Ozark (RI):**
41+
** Stable version: `{{versions.ozark.latest}}`
42+
** Snapshot version: `{{versions.ozark.develop}}`

src/ozark/docs/install-snapshots.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)