File tree Expand file tree Collapse file tree 2 files changed +42
-26
lines changed Expand file tree Collapse file tree 2 files changed +42
-26
lines changed Original file line number Diff line number Diff line change
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}}`
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments