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: docs/common-parameters.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@ Parameters shared by all goals.
5
5
| Parameter | Description | Required |
6
6
| -------- | ----------- | ------- |
7
7
| installDirectory | Local installation directory of the Liberty server. | Yes, only when `runtimeArchive`, `runtimeArtifact`, and `install` parameters are not set. |
8
-
| runtimeArchive | Location of the Liberty server compressed archive. The archive will be unpacked into a directory as specified by the `runtimeInstallDirectory` parameter. | Yes, only when `installDirectory`, `runtimeArtifact`, and `install` parameters are not set. |
9
-
| runtimeArtifact | Maven artifact name of the Liberty runtime. The runtime will be installed into a directory as specified by the `runtimeInstallDirectory` parameter. The default runtime is the latest version of `io.openliberty:openliberty-kernel`. | No |
8
+
| runtimeArchive<br/>(assemblyArchive)| Location of the Liberty server compressed archive. The archive will be unpacked into a directory as specified by the `runtimeInstallDirectory` parameter. | Yes, only when `installDirectory`, `runtimeArtifact`, and `install` parameters are not set. |
9
+
| runtimeArtifact<br/>(assemblyArtifact)| Maven artifact name of the Liberty runtime. The runtime will be installed into a directory as specified by the `runtimeInstallDirectory` parameter. The default runtime is the latest version of `io.openliberty:openliberty-kernel`. | No |
10
10
| libertyRuntimeGroupId | Liberty runtime groupId to use instead of the `runtimeArtifact` groupId. This can also be specified with `-Dliberty.runtime.groupId` from the command line. | No |
11
11
| libertyRuntimeArtifactId | Liberty runtime artifactId to use instead of the `runtimeArtifact` artifactId. This can also be specified with `-Dliberty.runtime.artifactId` from the command line. | No |
12
12
| libertyRuntimeVersion | Liberty runtime version to use instead of the `runtimeArtifact` version. This can also be specified with `-Dliberty.runtime.version` from the command line. | No |
@@ -15,6 +15,6 @@ Parameters shared by all goals.
15
15
| serverName | Name of the Liberty server instance. The default value is `defaultServer`. | No |
16
16
| userDirectory | Alternative user directory location that contains server definitions and shared resources. The default value is `usr` located in the Liberty runtime installation directory. | No |
17
17
| outputDirectory | Alternative location for server generated output such as logs, the _workarea_ directory, and other generated files (`WLP_OUTPUT_DIR`). The default value for the `package` and `install-feature` goals is `${project.build.directory}/liberty-alt-output-dir`. | No |
18
-
| runtimeInstallDirectory | Local installation directory location of the Liberty server when the server is installed using the runtime archive, runtime artifact or repository option. The default value is `${project.build.directory}/liberty`. | No |
18
+
| runtimeInstallDirectory<br/>(assemblyInstallDirectory)| Local installation directory location of the Liberty server when the server is installed using the runtime archive, runtime artifact or repository option. The default value is `${project.build.directory}/liberty`. | No |
19
19
| refresh | If true, re-install Liberty server into the local directory. This is only used when when the server is installed using the runtime archive or runtime artifact option. The default value is false. | No |
20
20
| skip | If true, the specified goal is bypassed entirely. The default value is false. | No |
Copy file name to clipboardExpand all lines: docs/common-server-parameters.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ Additional parameters shared by all server-based goals.
4
4
5
5
| Parameter | Description | Required |
6
6
| -------- | ----------- | ------- |
7
-
| serverXmlFile| Location of a server configuration file to be used by the instance. This replaces the `configFile`parameter which is still supported for backwards compatibility.| No |
7
+
| serverXmlFile<br/>(alias: configFile) | Location of a server configuration file to be used by the instance. The `configFile`alias is still supported for backwards compatibility.| No |
8
8
| configDirectory | Location of a server configuration directory to be used by the instance. Configuration files and folder structure will be copied to the target server. Files specified by other common server parameters will take precedence over files located in the configDirectory. The default value is `${basedir}/src/main/liberty/config`.| No |
9
9
| copyDependencies | Copies the specified dependencies to the specified locations. Multiple `dependency` parameters and `dependencyGroup` parameters can be added to the `copyDependencies` configuration. The `location` parameter can be added to the `copyDependencies` or `dependencyGroup` configuration to override the default location, which is the `lib/global` folder of the target server. The `stripVersion` parameter can be added to the `copyDependencies` or `dependencyGroup` configuration to override the default `stripVersion` value, which is `false`. | No |
10
10
| bootstrapProperties | List of bootstrap properties for the server instance. The backslashes will be converted to forward slashes. `bootstrapProperties` will take precedence over `bootstrapPropertiesFile`.| No |
11
11
| bootstrapPropertiesFile | Location of a bootstrap properties file to be used by the instance.| No |
12
12
| jvmOptions | List of JVM options for the server instance. `jvmOptions` will take precedence over `jvmOptionsFile`.| No |
13
13
| jvmOptionsFile | Location of a JVM options file to be used by the instance.| No |
14
-
| serverEnvFile| Location of a server environment file to be used by the instance. This replaces the `serverEnv`parameter which is still supported for backwards compatibility.| No |
14
+
| serverEnvFile<br/>(alias: serverEnv) | Location of a server environment file to be used by the instance. The `serverEnv`alias is still supported for backwards compatibility.| No |
15
15
| mergeServerEnv | Merge the server environment properties from all specified sources with the default generated `server.env` file in the target server. Conflicts are resolved with the same precedence as the replacement policy when this attribute is set to `false`. The `liberty.env.{var}` Maven properties are highest precedence, followed by the `serverEnvFile` attribute, then the `server.env` file located in the `configDirectory`, and finally the default generated `server.env` file in the target server. The default value is `false`. | No |
16
16
17
17
#### Copying dependencies with liberty-maven-plugin
0 commit comments