diff options
Diffstat (limited to 'java-compat')
-rw-r--r-- | java-compat/README.md | 26 | ||||
-rw-r--r-- | java-compat/gradle.properties | 2 | ||||
-rw-r--r-- | java-compat/src/Ice/src/main/java/Ice/Util.java | 4 | ||||
-rw-r--r-- | java-compat/test/android/controller/gradle.properties | 2 |
4 files changed, 17 insertions, 17 deletions
diff --git a/java-compat/README.md b/java-compat/README.md index 3ca5bf1b8c2..e4a8bb2694e 100644 --- a/java-compat/README.md +++ b/java-compat/README.md @@ -75,14 +75,14 @@ have not built Ice for C++ in this source distribution, you must set the example, on Linux: ``` -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 (MSI installation) +set ICE_HOME=C:\Program Files\ZeroC\Ice-3.8.0 (MSI installation) ``` On Windows if you are using Ice for C++ from a source distribution, you must set @@ -128,14 +128,14 @@ gradlew install The installation installs the following JAR files to `<prefix>/lib`. ``` -glacier2-compat-3.7.5.jar -ice-compat-3.7.5.jar -icebox-compat-3.7.5.jar -icebt-compat-3.7.5.jar -icediscovery-compat-3.7.5.jar -icegrid-compat-3.7.5.jar -icelocatordiscovery-compat-3.7.5.jar -icestorm-compat-3.7.5.jar +glacier2-compat-3.8a0.jar +ice-compat-3.8a0.jar +icebox-compat-3.8a0.jar +icebt-compat-3.8a0.jar +icediscovery-compat-3.8a0.jar +icegrid-compat-3.8a0.jar +icelocatordiscovery-compat-3.8a0.jar +icestorm-compat-3.8a0.jar ``` POM files are also installed for ease of deployment to a Maven-based @@ -149,14 +149,14 @@ then you must set the `ICE_HOME` environment variable with the path name of your Ice installation. On Linux or macOS: ``` -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 @@ -256,6 +256,6 @@ To run the tests against a `controller` application started from Android Studio you should omit the `--controller-app` option from the commands above. [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]: https://commons.apache.org/proper/commons-compress/ diff --git a/java-compat/gradle.properties b/java-compat/gradle.properties index 52f6662d5b6..06a9b7ca026 100644 --- a/java-compat/gradle.properties +++ b/java-compat/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-compat/src/Ice/src/main/java/Ice/Util.java b/java-compat/src/Ice/src/main/java/Ice/Util.java index baf9641f715..80d949648d2 100644 --- a/java-compat/src/Ice/src/main/java/Ice/Util.java +++ b/java-compat/src/Ice/src/main/java/Ice/Util.java @@ -563,7 +563,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 } /** @@ -576,7 +576,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-compat/test/android/controller/gradle.properties b/java-compat/test/android/controller/gradle.properties index d233cc12ffe..b1896b2df88 100644 --- a/java-compat/test/android/controller/gradle.properties +++ b/java-compat/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 |