Skip to content

Commit

Permalink
Prepare for 3.0.0.Final release.
Browse files Browse the repository at this point in the history
Signed-off-by: James R. Perkins <[email protected]>
  • Loading branch information
jamezp committed Apr 5, 2022
1 parent 735ffd7 commit 68f5bd2
Show file tree
Hide file tree
Showing 140 changed files with 2,648 additions and 908 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0.Final</version>
</parent>

<artifactId>wildfly-plugin-core</artifactId>
Expand Down
24 changes: 12 additions & 12 deletions docs/add-resource-example.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@

<!DOCTYPE html>
<!--
Generated by Apache Maven Doxia the 2022-01-31
Rendered using Docs Maven Skin 2.2.5 (https://github.com/Bernardo-MG/docs-maven-skin)
Generated by Apache Maven Doxia the 2022-04-05
Rendered using Docs Maven Skin 2.2.6 (https://github.com/Bernardo-MG/docs-maven-skin)
-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
Expand Down Expand Up @@ -137,7 +137,7 @@
<span class="navbar-toggler-icon"></span>
</button>

<small class="navbar-text d-none d-md-block"><span id="navbar-version">3.0.0.Beta1</span> (<time id="navbar-date">2022-01-31</time>)</small>
<small class="navbar-text d-none d-md-block"><span id="navbar-version">3.0.0.Final</span> (<time id="navbar-date">2022-04-05</time>)</small>
<div class="collapse navbar-collapse" id="navbar-main-menu">
<ul class="nav navbar-nav ms-auto">
<li class="nav-item dropdown">
Expand Down Expand Up @@ -182,11 +182,11 @@
</header>
<section id="main-section" class="container flex-grow-1">
<header class="pb-2 mt-4 mb-2 border-bottom">
<h1 id="adding-resources-examples">Adding Resources Examples</h1>
<h1 id="Adding-Resources-Examples">Adding Resources Examples</h1>
</header>
<p>The add-resources goal allows you to add resources such as datsources etc to a running WildFly instance.</p>
<section>
<h2 id="adding-datasources"><a name="Adding_datasources"></a>Adding datasources</h2>
<h2 id="Adding-datasources"><a name="Adding_datasources"></a>Adding datasources</h2>
<p>This can be combined with the <a href="add-resource-mojo.html">add-resource</a> goal to automatically deploy the datasource drivers.</p>
<p>The example below shows how to add a datasource that uses the default h2 database:</p>
<div>
Expand All @@ -198,7 +198,7 @@ <h2 id="adding-datasources"><a name="Adding_datasources"></a>Adding datasources<
&lt;plugin&gt;
&lt;groupId&gt;org.wildfly.plugins&lt;/groupId&gt;
&lt;artifactId&gt;wildfly-maven-plugin&lt;/artifactId&gt;
&lt;version&gt;3.0.0.Beta1&lt;/version&gt;
&lt;version&gt;3.0.0.Final&lt;/version&gt;
&lt;executions&gt;
&lt;execution&gt;
&lt;id&gt;add-datasource&lt;/id&gt;
Expand Down Expand Up @@ -243,7 +243,7 @@ <h2 id="adding-datasources"><a name="Adding_datasources"></a>Adding datasources<
&lt;plugin&gt;
&lt;groupId&gt;org.wildfly.plugins&lt;/groupId&gt;
&lt;artifactId&gt;wildfly-maven-plugin&lt;/artifactId&gt;
&lt;version&gt;3.0.0.Beta1&lt;/version&gt;
&lt;version&gt;3.0.0.Final&lt;/version&gt;
&lt;executions&gt;
&lt;execution&gt;
&lt;id&gt;deploy-postgresql&lt;/id&gt;
Expand Down Expand Up @@ -325,7 +325,7 @@ <h2 id="adding-datasources"><a name="Adding_datasources"></a>Adding datasources<
<p>The xml tags in the &lt;properties&gt; element correspond directly to the DMR nodes in the corresponding management operation. If you need to use DMR nodes of a non-primitive type then you must prefix the value with the !! escape sequence, which will cause the value to be interpreted as a string representation of a DMR node. For example in the &lt;xa-data-source-properties&gt; element about &lt;xa-datasource-properties&gt; is a DMR property list.</p>
</section>
<section>
<h2 id="adding-other-resources"><a name="Adding_other_resources"></a>Adding other resources</h2>
<h2 id="Adding-other-resources"><a name="Adding_other_resources"></a>Adding other resources</h2>
<p>It is also possible to deploy resources other than datasources, the example below shows how to deploy a JMS queue:</p>
<div>
<div>
Expand All @@ -338,7 +338,7 @@ <h2 id="adding-other-resources"><a name="Adding_other_resources"></a>Adding othe
&lt;plugin&gt;
&lt;groupId&gt;org.wildfly.plugins&lt;/groupId&gt;
&lt;artifactId&gt;wildfly-maven-plugin&lt;/artifactId&gt;
&lt;version&gt;3.0.0.Beta1&lt;/version&gt;
&lt;version&gt;3.0.0.Final&lt;/version&gt;
&lt;executions&gt;
&lt;execution&gt;
&lt;id&gt;add-jms-queue&lt;/id&gt;
Expand Down Expand Up @@ -370,7 +370,7 @@ <h2 id="adding-other-resources"><a name="Adding_other_resources"></a>Adding othe
</div>
</section>
<section>
<h2 id="adding-resources-in-domain-mode"><a name="Adding_resources_in_domain_mode"></a>Adding resources in domain mode</h2>
<h2 id="Adding-resources-in-domain-mode"><a name="Adding_resources_in_domain_mode"></a>Adding resources in domain mode</h2>
<p>Adding resources in domain mode works the same as the examples above, except you need to add the &lt;profiles&gt; property as well as specify at least one profile.</p>
<div>
<div>
Expand All @@ -383,7 +383,7 @@ <h2 id="adding-resources-in-domain-mode"><a name="Adding_resources_in_domain_mod
&lt;plugin&gt;
&lt;groupId&gt;org.wildfly.plugins&lt;/groupId&gt;
&lt;artifactId&gt;wildfly-maven-plugin&lt;/artifactId&gt;
&lt;version&gt;3.0.0.Beta1&lt;/version&gt;
&lt;version&gt;3.0.0.Final&lt;/version&gt;
&lt;executions&gt;
&lt;execution&gt;
&lt;id&gt;add-datasource&lt;/id&gt;
Expand Down Expand Up @@ -433,7 +433,7 @@ <h2 id="adding-resources-in-domain-mode"><a name="Adding_resources_in_domain_mod
-
<a href="http://repository.jboss.org/licenses/lgpl-2.1.txt">GNU Lesser General Public License v2.1 only</a>
</div>
<div>Rendered using <a href="https://github.com/Bernardo-MG/docs-maven-skin">Docs Maven Skin</a> 2.2.5</div>
<div>Rendered using <a href="https://github.com/Bernardo-MG/docs-maven-skin">Docs Maven Skin</a> 2.2.6</div>
</div>
</footer>
<script src="./lib/bootstrap/dist/js/bootstrap.min.js"></script>
Expand Down
18 changes: 9 additions & 9 deletions docs/add-resource-mojo.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@

<!DOCTYPE html>
<!--
Generated by Apache Maven Doxia the 2022-01-31
Rendered using Docs Maven Skin 2.2.5 (https://github.com/Bernardo-MG/docs-maven-skin)
Generated by Apache Maven Doxia the 2022-04-05
Rendered using Docs Maven Skin 2.2.6 (https://github.com/Bernardo-MG/docs-maven-skin)
-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
Expand Down Expand Up @@ -137,7 +137,7 @@
<span class="navbar-toggler-icon"></span>
</button>

<small class="navbar-text d-none d-md-block"><span id="navbar-version">3.0.0.Beta1</span> (<time id="navbar-date">2022-01-31</time>)</small>
<small class="navbar-text d-none d-md-block"><span id="navbar-version">3.0.0.Final</span> (<time id="navbar-date">2022-04-05</time>)</small>
<div class="collapse navbar-collapse" id="navbar-main-menu">
<ul class="nav navbar-nav ms-auto">
<li class="nav-item dropdown">
Expand Down Expand Up @@ -184,7 +184,7 @@
<section>
<h2 id="wildflyadd-resource"><a name="wildfly:add-resource"></a>wildfly:add-resource</h2>
<p><b>Full name</b>:</p>
<p>org.wildfly.plugins:wildfly-maven-plugin:3.0.0.Beta1:add-resource</p>
<p>org.wildfly.plugins:wildfly-maven-plugin:3.0.0.Final:add-resource</p>
<p><b>Description</b>:</p>
<div>
Adds a resource If force is set to false and the resource has already been added to the server, an error will occur and the operation will fail.
Expand All @@ -194,7 +194,7 @@ <h2 id="wildflyadd-resource"><a name="wildfly:add-resource"></a>wildfly:add-reso
<li>Requires a Maven project to be executed.</li>
</ul>
<section>
<h3 id="optional-parameters"><a name="Optional_Parameters"></a>Optional Parameters</h3>
<h3 id="Optional-Parameters"><a name="Optional_Parameters"></a>Optional Parameters</h3>
<table class="table table-striped table-bordered">
<thead>
<tr>
Expand All @@ -212,7 +212,7 @@ <h3 id="optional-parameters"><a name="Optional_Parameters"></a>Optional Paramete
<td>The operation address, as a comma separated string. If the resource or resources also define and address, this address will be used as the parent address. Meaning the resource addresses will be prepended with this address.<br></td>
</tr>
<tr>
<td><b><a href="#authenticationconfig">authenticationConfig</a></b></td>
<td><b><a href="#authenticationConfig">authenticationConfig</a></b></td>
<td>URL</td>
<td>-</td>
<td>A URL which points to the authentication configuration (wildfly-config.xml) the client uses to authenticate with the server.<br><b>User property is</b>: wildfly.authConfig.<br><b>Alias is</b>: authentication-config.</td>
Expand All @@ -236,7 +236,7 @@ <h3 id="optional-parameters"><a name="Optional_Parameters"></a>Optional Paramete
<td>Specifies the id of the server if the username and password is to be retrieved from the settings.xml file<br><b>User property is</b>: wildfly.id.<br></td>
</tr>
<tr>
<td><b><a href="#jbosshome">jbossHome</a></b></td>
<td><b><a href="#jbossHome">jbossHome</a></b></td>
<td>String</td>
<td>-</td>
<td>The WildFly Application Server's home directory. This is not required, but should be used for commands such as module add as they are executed on the local file system.<br><b>User property is</b>: jboss-as.home.<br><b>Alias is</b>: jboss-home.</td>
Expand Down Expand Up @@ -293,7 +293,7 @@ <h3 id="optional-parameters"><a name="Optional_Parameters"></a>Optional Paramete
</table>
</section>
<section>
<h3 id="parameter-details"><a name="Parameter_Details"></a>Parameter Details</h3>
<h3 id="Parameter-Details"><a name="Parameter_Details"></a>Parameter Details</h3>
<p><b><a name="address">address</a>:</b></p>
<div>
The operation address, as a comma separated string. If the resource or resources also define and address, this address will be used as the parent address. Meaning the resource addresses will be prepended with this address.
Expand Down Expand Up @@ -453,7 +453,7 @@ <h3 id="parameter-details"><a name="Parameter_Details"></a>Parameter Details</h3
-
<a href="http://repository.jboss.org/licenses/lgpl-2.1.txt">GNU Lesser General Public License v2.1 only</a>
</div>
<div>Rendered using <a href="https://github.com/Bernardo-MG/docs-maven-skin">Docs Maven Skin</a> 2.2.5</div>
<div>Rendered using <a href="https://github.com/Bernardo-MG/docs-maven-skin">Docs Maven Skin</a> 2.2.6</div>
</div>
</footer>
<script src="./lib/bootstrap/dist/js/bootstrap.min.js"></script>
Expand Down
56 changes: 33 additions & 23 deletions docs/apidocs/allclasses-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.14) on Mon Jan 31 19:11:44 PST 2022 -->
<title>All Classes (WildFly Plugin Core Utilities 3.0.0.Beta1 API)</title>
<!-- Generated by javadoc (11.0.14.1) on Tue Apr 05 11:08:20 PDT 2022 -->
<title>All Classes (WildFly Plugin Core Utilities 3.0.0.Final API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2022-01-31">
<meta name="dc.created" content="2022-04-05">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>
Expand All @@ -21,13 +21,13 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="All Classes (WildFly Plugin Core Utilities 3.0.0.Beta1 API)";
parent.document.title="All Classes (WildFly Plugin Core Utilities 3.0.0.Final API)";
}
}
catch(err) {
}
//-->
var data = {"i0":2,"i1":1,"i2":1,"i3":2,"i4":1,"i5":8,"i6":1,"i7":2,"i8":2,"i9":2,"i10":2,"i11":2,"i12":8,"i13":2,"i14":2,"i15":2,"i16":2};
var data = {"i0":2,"i1":2,"i2":1,"i3":1,"i4":2,"i5":1,"i6":8,"i7":1,"i8":2,"i9":2,"i10":2,"i11":2,"i12":2,"i13":2,"i14":8,"i15":2,"i16":2,"i17":2,"i18":2};
var tabs = {65535:["t0","All Classes"],1:["t1","Interface Summary"],2:["t2","Class Summary"],8:["t4","Exception Summary"]};
var altColor = "altColor";
var rowColor = "rowColor";
Expand Down Expand Up @@ -60,7 +60,7 @@
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><b>WildFly Plugin Core Utilities 3.0.0.Beta1</b></div>
<div class="aboutLanguage"><b>WildFly Plugin Core Utilities 3.0.0.Final</b></div>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
Expand Down Expand Up @@ -113,96 +113,106 @@ <h1 title="All&amp;nbsp;Classes" class="title">All&nbsp;Classes</h1>
<th class="colLast" scope="col">Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/ConfigurationId.html" title="class in org.wildfly.plugin.core">ConfigurationId</a></td>
<th class="colLast" scope="row">
<div class="block">Simple wrapper for configuration ids.</div>
</th>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/ConsoleConsumer.html" title="class in org.wildfly.plugin.core">ConsoleConsumer</a></td>
<th class="colLast" scope="row">
<div class="block">A utility which will consume output from an <a href="https://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io" class="externalLink"><code>InputStream</code></a> and write it to an <a href="https://docs.oracle.com/javase/8/docs/api/java/io/OutputStream.html?is-external=true" title="class or interface in java.io" class="externalLink"><code>OutputStream</code></a>.</div>
</th>
</tr>
<tr id="i1" class="rowColor">
<tr id="i2" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/Constants.html" title="interface in org.wildfly.plugin.core">Constants</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i2" class="altColor">
<tr id="i3" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/ContainerDescription.html" title="interface in org.wildfly.plugin.core">ContainerDescription</a></td>
<th class="colLast" scope="row">
<div class="block">Information about the running container.</div>
</th>
</tr>
<tr id="i3" class="rowColor">
<tr id="i4" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/Deployment.html" title="class in org.wildfly.plugin.core">Deployment</a></td>
<th class="colLast" scope="row">
<div class="block">Represents a deployment to be deployed or redeployed to a server.</div>
</th>
</tr>
<tr id="i4" class="altColor">
<tr id="i5" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/DeploymentDescription.html" title="interface in org.wildfly.plugin.core">DeploymentDescription</a></td>
<th class="colLast" scope="row">
<div class="block">Represents a default description for a deployment.</div>
</th>
</tr>
<tr id="i5" class="rowColor">
<tr id="i6" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/DeploymentException.html" title="class in org.wildfly.plugin.core">DeploymentException</a></td>
<th class="colLast" scope="row">
<div class="block">An exception that represents a deployment error.</div>
</th>
</tr>
<tr id="i6" class="altColor">
<tr id="i7" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/DeploymentManager.html" title="interface in org.wildfly.plugin.core">DeploymentManager</a></td>
<th class="colLast" scope="row">
<div class="block">Allows deployment operations to be executed on a running server.</div>
</th>
</tr>
<tr id="i7" class="rowColor">
<tr id="i8" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/DeploymentManager.Factory.html" title="class in org.wildfly.plugin.core">DeploymentManager.Factory</a></td>
<th class="colLast" scope="row">
<div class="block">A factory to create a new deployment manager</div>
</th>
</tr>
<tr id="i8" class="altColor">
<tr id="i9" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/DeploymentOperations.html" title="class in org.wildfly.plugin.core">DeploymentOperations</a></td>
<th class="colLast" scope="row">
<div class="block">A helper to create deployment operations.</div>
</th>
</tr>
<tr id="i9" class="rowColor">
<tr id="i10" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/DeploymentResult.html" title="class in org.wildfly.plugin.core">DeploymentResult</a></td>
<th class="colLast" scope="row">
<div class="block">Represents the results of a deployment.</div>
</th>
</tr>
<tr id="i10" class="altColor">
<tr id="i11" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/FeaturePack.html" title="class in org.wildfly.plugin.core">FeaturePack</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/GalleonUtils.html" title="class in org.wildfly.plugin.core">GalleonUtils</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i11" class="rowColor">
<tr id="i13" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/MavenRepositoriesEnricher.html" title="class in org.wildfly.plugin.core">MavenRepositoriesEnricher</a></td>
<th class="colLast" scope="row">
<div class="block">Add required repositories if not present.</div>
</th>
</tr>
<tr id="i12" class="altColor">
<tr id="i14" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/OperationExecutionException.html" title="class in org.wildfly.plugin.core">OperationExecutionException</a></td>
<th class="colLast" scope="row">
<div class="block">An error indicating an operation has failed to execute.</div>
</th>
</tr>
<tr id="i13" class="rowColor">
<tr id="i15" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/ServerHelper.html" title="class in org.wildfly.plugin.core">ServerHelper</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i14" class="altColor">
<tr id="i16" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/SimpleDeploymentDescription.html" title="class in org.wildfly.plugin.core">SimpleDeploymentDescription</a></td>
<th class="colLast" scope="row">
<div class="block">A simple deployment description.</div>
</th>
</tr>
<tr id="i15" class="rowColor">
<tr id="i17" class="rowColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/UndeployDescription.html" title="class in org.wildfly.plugin.core">UndeployDescription</a></td>
<th class="colLast" scope="row">
<div class="block">Represents the description for undeploying content from a running container.</div>
</th>
</tr>
<tr id="i16" class="altColor">
<tr id="i18" class="altColor">
<td class="colFirst"><a href="org.wildfly.plugin.core/org/wildfly/plugin/core/Utils.html" title="class in org.wildfly.plugin.core">Utils</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
Expand Down Expand Up @@ -231,7 +241,7 @@ <h1 title="All&amp;nbsp;Classes" class="title">All&nbsp;Classes</h1>
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><b>WildFly Plugin Core Utilities 3.0.0.Beta1</b></div>
<div class="aboutLanguage"><b>WildFly Plugin Core Utilities 3.0.0.Final</b></div>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
Expand Down
Loading

0 comments on commit 68f5bd2

Please sign in to comment.