You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/en/user/source/development/index.rst
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@ You are encouraged to help contribute code to GeoWebCache. To do so, you will f
7
7
8
8
This is the current prerequisites:
9
9
10
-
* Java 17 (`OpenJDK <https://openjdk.java.net>`__ linux, `OpenJDK Temurin 17 <https://adoptium.net/temurin/releases/?variant=openjdk8&jvmVariant=hotspot&os=any&arch=any&version=17>` windows and macOS installers)
11
-
* `Maven <https://maven.apache.org/>`_
12
-
* `Git <https://git-scm.com>`_
10
+
* Java 8 (`OpenJDK <http://openjdk.java.net>`__ linux, `OpenJDK Temurin 8 <https://adoptium.net/?variant=openjdk8&jvmVariant=hotspot>` windows and macOS installers)
11
+
* `Maven <http://maven.apache.org/>`_
12
+
* `Git <http://git-scm.com>`_
13
13
14
-
Please make sure you use **Java 17** to compile to ensure that we don't accidentally use new features only available in Java 21.
14
+
Please make sure you use **Java 8** to compile to ensure that we don't accidentally use new features only available in Java 11.
15
15
16
16
You are encouraged to join the `GeoWebCache Developers mailing list <https://lists.sourceforge.net/lists/listinfo/geowebcache-devel>`__ to discuss your work. It is always a good idea to ask whether anyone else has already solved the same problem.
17
17
@@ -27,28 +27,28 @@ Setting Up
27
27
28
28
.. code-block:: bash
29
29
30
-
set JAVA_HOME=c:\Program Files\Temurin\jdk-17.0.15_6
30
+
set JAVA_HOME=c:\Program Files\Temurin\jdk8u322-b06
31
31
32
32
Linux/OS X:
33
33
34
34
.. code-block:: bash
35
35
36
-
export JAVA_HOME=/opt/jdk-17.0.15_6
36
+
export JAVA_HOME=/opt/jdk1.7.0_79
37
37
38
-
#. You can download maven from https://maven.apache.org/download.html, unpack and include the :file:`bin` directory in your PATH variable.
38
+
#. You can download maven from http://maven.apache.org/download.html, unpack and include the :file:`bin` directory in your PATH variable.
39
39
40
40
Windows:
41
41
42
42
.. code-block:: bash
43
43
44
-
set M2_HOME = C:\java\apache-maven-33.9.5
44
+
set M2_HOME = C:\java\apache-maven-3.8.5
45
45
set PATH=%PATH%;%M2_HOME%\bin;%JAVA_HOME%\bin
46
46
47
47
Linux:
48
48
49
49
.. code-block:: bash
50
50
51
-
export M2_HOME = ~/java/apache-maven-3.9.5
51
+
export M2_HOME = ~/java/apache-maven-3.8.5
52
52
export PATH=$PATH:$M2_HOME/bin:$JAVA_HOME/bin
53
53
54
54
For more detail instructions on maven see the `download page <http://maven.apache.org/download.cgi>`_.
0 commit comments