Payara Micro Maven Plugin
Payara Micro has a Maven plugin which can start and stop Payara Micro and create an Uber JAR bundle of the application and Payara Micro.
The plugin requires JDK 8 or higher and the latest version is currently 1.4.0
Configurable Goals
bundle
Aim: This goal bundles the attached project’s artifact into an Uber JAR with the specified configurations. By default, this goal is attached to the install phase.
Usage: mvn payara-micro:bundle
Example:
<plugin>
<groupId>fish.payara.maven.plugins</groupId>
<artifactId>payara-micro-maven-plugin</artifactId>
<version>${payara.micro.maven.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
<configuration>
<startClass>my.custom.start.class.Main</startClass>
<deployArtifacts>
<artifactItem>
<groupId>org.mycompany</groupId>
<artifactId>my-project</artifactId>
<version>1.0</version>
<type>ear</type>
</artifactItem>
</deployArtifacts>
<customJars>
<artifactItem>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>6.0</version>
</artifactItem>
</customJars>
</configuration>
</plugin>
Element | Default | Notes |
---|---|---|
|
true |
If the extension of the produced artifact is |
|
none |
Sets context root of the deployed artifact if |
|
|
Sets context root of the deployed artifact to |
|
(optional): |
Replaces the |
|
|
Appends all system properties defined into the |
|
|
By default, bundle mojo fetches Payara Micro with version 6.3.0. |
|
None |
Can contain a list of artifactItems, which defines the dependencies with their GAVs to be copied under MICRO-INF/deploy folder. |
|
None |
Can contain a list of artifactItems, which defines the dependencies with their GAVs to be copied under MICRO-INF/lib folder. |
|
|
Specifies the maven artifact classifier to use for the generated uber-jar. |
The bundle
goal always searches for domain configuration files in src/main/resources
to copy in to the MICRO-INF/domain
directory of the Uber jar. The files which are currently included are:
-
domain.xml
-
hazelcast-config.xml
-
keystore.jks
-
login.conf
-
logging.properties
-
metrics.xml
Additionally, boot command scripts will be included if they exist in src/main/resources
and transferred to the MICRO-INF
directory of the Uber jar artifact.
pre-boot-commands.txt
-
Provides a file of asadmin commands to run before booting the server.
post-boot-commands.txt
-
Provides a file of asadmin commands to run after booting the server.
post-deploy-commands.txt
-
Provides a file of asadmin commands to run after all deployments have completed.
start
Aim: This goal starts Payara Micro with the specified configuration.
Usage: mvn payara-micro:start
Example:
<plugin>
<groupId>fish.payara.maven.plugins</groupId>
<artifactId>payara-micro-maven-plugin</artifactId>
<version>${payara.micro.maven.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>start</goal>
</goals>
</execution>
</executions>
<configuration>
<useUberJar>true</useUberJar>
<payaraMicroAbsolutePath>/path/to/payara-micro.jar</payaraMicroAbsolutePath>
<payaraVersion>{page-version}</payaraVersion>
<artifactItem>
<groupId>fish.payara.extras</groupId>
<artifactId>payara-micro</artifactId>
<version>{page-version}</version>
</artifactItem>
<daemon>true</daemon>
<javaPath>/path/to/Java/Executable</javaPath>
<deployWar>true</deployWar>
<contextRoot>myApp</contextRoot>
<javaCommandLineOptions>
<option>
<value>-Xdebug</value>
</option>
<option>
<key>-Xrunjdwp:transport</key>
<value>dt_socket,server=y,suspend=y,address=5005</value>
</option>
</javaCommandLineOptions>
<commandLineOptions>
<option>
<key>--domainconfig</key>
<value>/path/to/domain.xml</value>
</option>
<option>
<key>--autoBindHttp</key>
<value>true</value>
</option>
</commandLineOptions>
</configuration>
</plugin>
If you want to execute the payara-micro plugin along with maven-toolchains-plugin, you need to execute the plugin as: mvn toolchains:toolchain payara-micro:start . See Using Toolchains for more information.
|
Element | Default | Notes |
---|---|---|
|
false |
Use the created uber-jar that resides in the target folder. The name of the JAR artifact will be resolved automatically by evaluating its final name, artifact ID and version. This configuration element has the higher precedence compared to |
|
|
Specifies the maven artifact classifier to use for the Uber JAR. |
|
none |
Absolute path to the Payara Micro executable. |
|
6.3.0 |
By default, start mojo fetches payara-micro with version 6.3.0. |
|
none |
Defines payara-micro artifact with its coordinates. Specified artifact should be available in local maven repository. |
|
false |
Starts Payara Micro in separate JVM process and continues with the maven build. |
|
false |
If Payara Micro is executed in daemon mode, the executor thread will wait for the ready message before shutting down its process. By setting |
|
|
Absolute path to the java executable. This has higher priority to the java executable identified via the Maven toolchain. |
|
false |
If the attached project is of type WAR, it will automatically be deployed if |
|
none |
Defines the context root of an application. |
|
none |
Defines a list of command line options that will be passed to |
|
none |
Defines a list of command line options that will be passed onto payara-micro. |
|
false |
Enables the Hot Deploy mode. |
|
false |
Enables automatic compilation and deployment upon saving files. |
|
false |
Triggers a browser refresh for an up-to-date view after each redeployment. |
|
none |
Specifies the browser for live reload. Adapted based on the system if not specified. |
|
false |
Persists session state across multiple redeployments. |
|
false |
Refactors log format for improved readability. |
stop
Aim: This goal stops Payara Micro with the specified configuration. By default, this goal tries to find the currently executing Payara Micro instance by checking the running JAR.
If an artifactItem
is defined, it will take precedence for identifying currently running instances. If processId
is defined, this takes the highest precedence and the given processId
will immediately kill the executing Payara Micro instance.
Usage: mvn payara-micro:stop
Example:
<plugin>
<groupId>fish.payara.maven.plugins</groupId>
<artifactId>payara-micro-maven-plugin</artifactId>
<version>${payara.micro.maven.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
<configuration>
<processId>32333</processId>
<artifactItem>
<groupId>fish.payara.extras</groupId>
<artifactId>payara-micro</artifactId>
<version>{page-version}</version>
</artifactItem>
</configuration>
</plugin>
If you want to execute the payara-micro plugin along with maven-toolchains-plugin, you need to execute the plugin as: mvn toolchains:toolchain payara-micro:start . See Using Toolchains for more information.
|
Element | Default | Notes |
---|---|---|
|
none |
Process id of the running Payara Micro instance. |
|
none |
Defines payara-micro artifact with its coordinates. This information is used to identify the process id of the running Payara Micro instance. |
|
|
Use the name of the created uber-jar that resides in target folder to identify the process id of the running Payara Micro instance. |
|
|
Specifies the maven artifact classifier of the generated uber-jar to identify the process id of the running Payara Micro instance. |
|
5000 |
Defines the maximum timeout in milliseconds to wait for the process of Payara Micro instance to stop. |
reload
Aim: This goal reloads the Payara Micro application with the specified configuration. By default, this goal performs the vanilla deployment of the application without restarting the Payara Micro instance.
If hotDeploy is set to true then the Hot Deploy functionality will be enabled.
|
Usage: mvn payara-micro:reload
This goal is specifically designed for integration with the IDEs and Editors. Payara Micro instance allows IDEs to deploy the application in Hot Deploy mode by reusing the existing application instance and updating its classloader and internal components relative to the modified source. This can lead to significant savings of time when an application is redeployed and boost developer productivity even more. |
Element | Default | Notes |
---|---|---|
|
false |
Enables the Hot Deploy mode. |
|
none |
Defines a list (comma separated) of the absolute paths to the source file which need to be reloaded via the Hot Deploy feature. |
|
false |
If set to true, reloads deployment descriptors metadata in Hot Deploy mode |
|
false |
Persists session state across multiple re-deployments. |
dev
Aim: The dev goal is designed to streamline development by enabling deployWar
, exploded
, autoDeploy
, liveReload
, keepState
, and trimLog
to true, which facilitating auto compilation and deployment on saving files resulting in rapid compilation, and deployment for an efficient development workflow.
Usage:
mvn payara-micro:dev
The dev
goal is an extended goal of start
and is pre-configured for developing web applications in development mode which is equivalent to starting the Payara Micro instance using the following command:
mvn payara-micro:start -DautoDeploy=true -DliveReload=true -DdeployWar=true -Dexploded=true -DkeepState -DtrimLog=true
Features in Dev Mode:
-
Auto Deploy: The AutoDeploy feature enables automatic compilation and deployment of the application upon saving files within the project structure. Enabled by setting
autoDeploy=true
.The AutoDeploy feature relies on Java’s WatchService to monitor changes in source directories, enabling continuous build and reload using Maven’s Invoker. It dynamically modifies Maven goals based on file modifications, supports asynchronous execution for concurrent build tasks, and includes specifics for tracking changes in source, resources, and test directories.
The AutoDeploy feature has a limitation and is not supported for pom.xml
,pre-boot-commands.txt
,post-boot-commands.txt
, orpost-deploy-commands.txt
. -
Restart on modifying boot command scripts: The restart functionality in
dev
mode enables a seamless instance restart upon modifications to the boot command scriptspre-boot-commands.txt
,post-boot-commands.txt
, orpost-deploy-commands.txt
, offering a quick server restart option for improved development efficiency.Modifying the pom.xml
is not supported in this context, as limitations may arise when restarting with a modifiedpom.xml
, potentially conflicting with previously passed properties via the command line. -
Live Reload: The LiveReload feature automatically refreshes the browser upon redeployment.
-
liveReload
Property: Enables or disables automatic browser refresh on redeployment. TheliveReload
property is set totrue
by default in thedev
goal andfalse
in thestart
goal. -
browser
Property: Thebrowser
property offers seamless configuration. If not specified, the system prioritizes Chrome and Firefox, gracefully falling back to Edge for Windows, Safari for macOS, or Firefox for other platforms. This improvement simplifies setup - no need to worry about specifying a browser; it adapts based on your system. -
Cached Last Accessed URL: The last accessed Payara Micro URL is stored in the
payara-maven-config.properties
file within the system’s temporary directory. This ensures accessibility across application restarts, eliminating the need for users to manually navigate to the last accessed URL. This streamlined approach enhances the overall user experience by maintaining continuity and reducing manual intervention after each restart.
-
-
Persistent Session State: The
keepState
property allows for the persistence of session state across multiple re-deployments during the development process. Enabled by default in thedev
goal and disabled in thestart
goal. -
Readable Logging: The
trimLog
property refactors the log format for improved readability. Enabled by default in thedev
goal and disabled in thestart
goal.
All listed features are enabled by default in the dev mode.
|
Using Toolchains
The Maven Toolchains provide a way for plugins to discover what JDK (or other tools) are to be used during the build and Payara Micro Maven Plugin also supports using toolchains with its configuration.
In order to use the toolchains with either payara-micro:start
or payara-micro:stop
, first toolchains plugin should be defined as:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<goals>
<goal>toolchain</goal>
</goals>
</execution>
</executions>
<configuration>
<toolchains>
<jdk>
<version>1.8</version>
<vendor>oracle</vendor>
</jdk>
</toolchains>
</configuration>
</plugin>
toolchains.xml
is the file for configuring each toolchain, and it should reside under the .m2
folder. A sample would be as:
<?xml version="1.0" encoding="UTF8"?>
<toolchains>
<toolchain>
<type>jdk</type>
<provides>
<version>1.7</version>
<vendor>oracle</vendor>
</provides>
<configuration>
<jdkHome>/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<version>1.8</version>
<vendor>oracle</vendor>
</provides>
<configuration>
<jdkHome>/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home</jdkHome>
</configuration>
</toolchain>
</toolchains>
The version and the vendor defined in the plugins section should match one of the entries defined in the toolchains.xml file. After configuring the toolchain, the plugin can be executed with start
and stop
goals as:
mvn toolchains:toolchain payara-micro:start
mvn toolchains:toolchain payara-micro:stop