diff options
Diffstat (limited to 'java')
-rw-r--r-- | java/README.md | 26 | ||||
-rw-r--r-- | java/gradle.properties | 2 | ||||
-rw-r--r-- | java/src/Ice/src/main/java/com/zeroc/Ice/Util.java | 4 | ||||
-rw-r--r-- | java/test/android/controller/gradle.properties | 2 |
4 files changed, 17 insertions, 17 deletions
diff --git a/java/README.md b/java/README.md index ac9865a7a76..ad59cc2aa5a 100644 --- a/java/README.md +++ b/java/README.md @@ -130,7 +130,7 @@ export ICE_HOME=/usr On Windows with an MSI installation: ``` set ICE_BIN_DIST=cpp -set ICE_HOME=C:\Program Files\ZeroC\Ice-3.7.5 +set ICE_HOME=C:\Program Files\ZeroC\Ice-3.8.0 ``` If you are using Ice for C++ from a source build on Windows, you must set @@ -172,16 +172,16 @@ gradlew install The following JAR files will be installed to `<prefix>/lib`. ``` -glacier2-3.7.5.jar -ice-3.7.5.jar -icebox-3.7.5.jar -icebt-3.7.5.jar -icediscovery-3.7.5.jar -icegrid-3.7.5.jar +glacier2-3.8a0.jar +ice-3.8a0.jar +icebox-3.8a0.jar +icebt-3.8a0.jar +icediscovery-3.8a0.jar +icegrid-3.8a0.jar icegridgui.jar -icelocatordiscovery-3.7.5.jar -icessl-3.7.5.jar -icestorm-3.7.5.jar +icelocatordiscovery-3.8a0.jar +icessl-3.8a0.jar +icestorm-3.8a0.jar ``` POM files are also installed for ease of deployment to a Maven-based @@ -194,13 +194,13 @@ 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.7.5 (For local build) +export ICE_HOME=/opt/Ice-3.8.0 (For local build) export ICE_HOME=/usr (For RPM installation) ``` On Windows: ``` -set ICE_HOME=C:\Program Files\ZeroC\Ice-3.7.5 +set ICE_HOME=C:\Program Files\ZeroC\Ice-3.8.0 ``` Python is required to run the test suite. To run the tests, open a command @@ -308,7 +308,7 @@ can start the IceGrid GUI tool by double-clicking the IceGrid GUI icon in Finder. [1]: https://zeroc.com/downloads/ice -[2]: https://doc.zeroc.com/ice/3.7/release-notes/supported-platforms-for-ice-3-7-5 +[2]: https://doc.zeroc.com/ice/3.7/release-notes/supported-platforms-for-ice-3-8-0 [3]: https://gradle.org [4]: http://proguard.sourceforge.net [5]: https://commons.apache.org/proper/commons-compress/ diff --git a/java/gradle.properties b/java/gradle.properties index d2f730dc275..dbd92402363 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -5,7 +5,7 @@ // // Version used in JAR files // -iceVersion = 3.7.5 +iceVersion = 3.8.0 // // Select an installation base directory. The directory will be created diff --git a/java/src/Ice/src/main/java/com/zeroc/Ice/Util.java b/java/src/Ice/src/main/java/com/zeroc/Ice/Util.java index cd52c3e604f..d7f1c945381 100644 --- a/java/src/Ice/src/main/java/com/zeroc/Ice/Util.java +++ b/java/src/Ice/src/main/java/com/zeroc/Ice/Util.java @@ -529,7 +529,7 @@ public final class Util **/ public static String stringVersion() { - return "3.7.5"; // "A.B.C", with A=major, B=minor, C=patch + return "3.8.0-alpha.0"; // "A.B.C", with A=major, B=minor, C=patch } /** @@ -541,7 +541,7 @@ public final class Util **/ public static int intVersion() { - return 30705; // AABBCC, with AA=major, BB=minor, CC=patch + return 30800; // AABBCC, with AA=major, BB=minor, CC=patch } /** diff --git a/java/test/android/controller/gradle.properties b/java/test/android/controller/gradle.properties index ae134460bab..eac498ff788 100644 --- a/java/test/android/controller/gradle.properties +++ b/java/test/android/controller/gradle.properties @@ -5,7 +5,7 @@ // // Version used in JAR files // -iceVersion = 3.7.5 +iceVersion = 3.8.0 // // Set iceHome to location of Ice installation if Ice was installed in a |