diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-10-11 12:08:11 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-10-11 12:08:25 +0200 |
commit | f47df588b6824cb995c87818e4b495689fd42d55 (patch) | |
tree | b3adb7135df83fd97be32bf254ab7ca0d0fb8132 /java-compat | |
parent | Fixed typos (diff) | |
download | ice-f47df588b6824cb995c87818e4b495689fd42d55.tar.bz2 ice-f47df588b6824cb995c87818e4b495689fd42d55.tar.xz ice-f47df588b6824cb995c87818e4b495689fd42d55.zip |
Minor fixes to documentation files
Diffstat (limited to 'java-compat')
-rw-r--r-- | java-compat/README.md | 11 | ||||
-rw-r--r-- | java-compat/gradle.properties | 23 |
2 files changed, 19 insertions, 15 deletions
diff --git a/java-compat/README.md b/java-compat/README.md index 1dd37675b0d..5158c471e84 100644 --- a/java-compat/README.md +++ b/java-compat/README.md @@ -39,9 +39,10 @@ Make sure that the `javac` and `java` commands are present in your PATH. ### Gradle Ice for Java uses the [Gradle][3] build system, and includes the Gradle wrapper -in the distribution. You cannot build the Ice for Java source distribution without -an Internet connection. Gradle will download all required packages automatically -from Maven Central repository located at http://central.maven.org/maven2/ +in the distribution. You cannot build the Ice for Java source distribution +without an Internet connection. Gradle will download all required packages +automatically from Maven Central repository located at +http://central.maven.org/maven2/ ### Bzip2 Compression @@ -92,8 +93,8 @@ set CPP_CONFIGURATION=Debug The supported values for `CPP_PLATFORM` are `Win32` and `x64` and the supported values for `CPP_CONFIGURATION` are `Debug` and `Release`. -Before building Ice for Java, review the settings in the file `gradle.properties` -and edit as necessary. +Before building Ice for Java, review the settings in the file +`gradle.properties` and edit as necessary. To build Ice, all services, and tests, run diff --git a/java-compat/gradle.properties b/java-compat/gradle.properties index dbb5e8bf351..ec28f1d6bed 100644 --- a/java-compat/gradle.properties +++ b/java-compat/gradle.properties @@ -17,7 +17,8 @@ iceVersion = 3.7.3 prefix = // -// Used to set --release (with javac >=9) or -source/-target with older javac versions. +// Used to set --release (with javac >=9) or -source/-target with older javac +// versions. // targetJavaRelease = 7 @@ -28,14 +29,16 @@ targetJavaRelease = 7 debug = true // -// Set the version of the Ice Builder to use for building. It must be set to debian +// Set the version of the Ice Builder to use for building. It must be set to +// debian // when using the gradle-ice-builder-plugin package on Debian. // iceBuilderVersion = 1.4.7 // -// Set the builder artifact class path. It must be set to com.zeroc.gradle.ice-builder -// when using the gradle-ice-builder-plugin package. +// Set the builder artifact class path. It must be set to +// com.zeroc.gradle.ice-builder when using the gradle-ice-builder-plugin +// package. // iceBuilderClassPath = gradle.plugin.com.zeroc.gradle.ice-builder @@ -55,16 +58,16 @@ devRepo = // // -// The platform used by the C++ builds. Supported values are `x64` and `Win32`. -// This is required to locate the slice2java compiler in the platform-dependent -// directory. +// The platform used by the C++ builds. Supported values are `x64` and +// `Win32`. This is required to locate the slice2java compiler in the +// platform-dependent directory. // cppPlatform = // -// The configuration used by the C++ builds. Supported values are `Debug` and `Release`. -// This is required to locate the slice2java compiler in the configuration-dependent -// directory. +// The configuration used by the C++ builds. Supported values are `Debug` +// and `Release`. This is required to locate the slice2java compiler in +// the configuration-dependent directory. // cppConfiguration = |