summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
Diffstat (limited to 'java')
-rw-r--r--java/BuildInstructions.md10
-rw-r--r--java/gradle.properties2
-rw-r--r--java/src/Ice/src/main/java/Ice/Util.java4
3 files changed, 8 insertions, 8 deletions
diff --git a/java/BuildInstructions.md b/java/BuildInstructions.md
index e5e3e16079d..3fc75b0a4a6 100644
--- a/java/BuildInstructions.md
+++ b/java/BuildInstructions.md
@@ -141,12 +141,12 @@ have not built Ice for C++ in this source distribution, you must set the
`ICE_HOME` environment variable with the path name of your Ice installation.
For example, on Unix:
- $ export ICE_HOME=/opt/Ice-3.6.2 (For local build)
+ $ export ICE_HOME=/opt/Ice-3.6.3 (For local build)
$ export ICE_HOME=/usr (For RPM installation)
On Windows:
- > set ICE_HOME=C:\Program Files (x86)\ZeroC\Ice-3.6.2
+ > set ICE_HOME=C:\Program Files (x86)\ZeroC\Ice-3.6.3
Before building Ice for Java, review the settings in the file
`gradle.properties` and edit as necessary.
@@ -176,7 +176,7 @@ The installation installs the following JAR files to `<prefix>/lib`.
freeze-3.6.2.jar
glacier2-3.6.2.jar
- ice-3.6.2.jar
+ ice-3.6.3.jar
icebox-3.6.2.jar
icediscovery-3.6.2.jar
icegrid-3.6.2.jar
@@ -195,12 +195,12 @@ C++ distribution. If you have not built Ice for C++ in this source distribution
then you must set the `ICE_HOME` environment variable with the path name of your
Ice installation. On Unix:
- $ export ICE_HOME=/opt/Ice-3.6.2 (For local build)
+ $ export ICE_HOME=/opt/Ice-3.6.3 (For local build)
$ export ICE_HOME=/usr (For RPM installation)
On Windows:
- > set ICE_HOME=c:\Program Files (x86)\ZeroC\Ice-3.6.2
+ > set ICE_HOME=c:\Program Files (x86)\ZeroC\Ice-3.6.3
Python is required to run the test suite. To run the tests, open a command
window and change to the top-level directory. At the command prompt, execute:
diff --git a/java/gradle.properties b/java/gradle.properties
index 49737925e6b..36ee033c4dd 100644
--- a/java/gradle.properties
+++ b/java/gradle.properties
@@ -7,7 +7,7 @@
//
// **********************************************************************
-iceVersion = 3.6.2
+iceVersion = 3.6.3
//
// The directory that contains Oracle Berkeley DB's db.jar file. When not
diff --git a/java/src/Ice/src/main/java/Ice/Util.java b/java/src/Ice/src/main/java/Ice/Util.java
index b2cc28106a3..bd2db69babb 100644
--- a/java/src/Ice/src/main/java/Ice/Util.java
+++ b/java/src/Ice/src/main/java/Ice/Util.java
@@ -571,7 +571,7 @@ public final class Util
public static String
stringVersion()
{
- return "3.6.2"; // "A.B.C", with A=major, B=minor, C=patch
+ return "3.6.3"; // "A.B.C", with A=major, B=minor, C=patch
}
/**
@@ -584,7 +584,7 @@ public final class Util
public static int
intVersion()
{
- return 30602; // AABBCC, with AA=major, BB=minor, CC=patch
+ return 30603; // AABBCC, with AA=major, BB=minor, CC=patch
}
/**