Skip to content

Commit

Permalink
Move response classes and ToString into bw-base module.
Browse files Browse the repository at this point in the history
Fix a few wrong and missing dependencies.
  • Loading branch information
douglm committed Jan 18, 2025
1 parent e2cab8f commit af93b31
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3116,15 +3116,15 @@ <h4 id="install-demo">6.1.3. Fast-track demo version</h4>
<div class="listingblock">
<div class="content">
<pre>maven add-repository --name=ossrh --url=https://oss.sonatype.org/content/repositories/snapshots/ --enable-snapshot=true
maven resolve-feature-pack org.bedework.deploy:bw-wf-feature-pack:4.1.1-SNAPSHOT</pre>
maven resolve-feature-pack org.bedework.deploy:bw-wf-feature-pack:4.2.0</pre>
</div>
</div>
<div class="paragraph">
<p>then install</p>
</div>
<div class="listingblock">
<div class="content">
<pre>install org.bedework.deploy:bw-wf-feature-pack:4.1.0
<pre>install org.bedework.deploy:bw-wf-feature-pack:4.2.0
--dir=wildfly --verbose --layers=bw-demoall-h2,web-console</pre>
</div>
</div>
Expand Down Expand Up @@ -3229,7 +3229,7 @@ <h4 id="_more_detailed_steps">6.1.4. More detailed steps:</h4>
<div class="listingblock">
<div class="content">
<pre>./galleon-5.2.2.Final/bin/galleon.sh \
install org.bedework.deploy:bw-wf-feature-pack:4.1.0
install org.bedework.deploy:bw-wf-feature-pack:4.2.0
--dir=wildfly-26.0.1-Final --verbose --layers=bw-cal-eventsubmit-pg,web-console

ln -s wildfly-26.0.1.Final wildfly</pre>
Expand Down Expand Up @@ -3996,7 +3996,7 @@ <h4 id="_mysql">6.6.2. MySQL</h4>
<div class="sect2">
<h3 id="installing-opensearch">6.7. Install and configure OpenSearch</h3>
<div class="paragraph">
<p>Bedework uses OpenSearch as the indexer engine. As objects are created destroyed and updated they are indexed through calls to the indexer. The indexer can run as a local application, useful for development - or as an external service - which will be required for clustering.</p>
<p>Bedework uses OpenSearch as the indexer engine. As objects are created destroyed and updated they are indexed through calls to the indexer. The indexer can run as a local application, useful for development - or as an external service - which will be required for clustering. The version bedework is using is 2.18.0</p>
</div>
<div class="paragraph">
<p>It is safer to NOT run in production with the OpenSearch interfaces open to the outside. OpenSearch now has various configuration options available. Bedework supports basic user authentication. Currently, you can run unauthenticated but OpenSearch will generate a lot of warnings in the log.</p>
Expand Down Expand Up @@ -4454,7 +4454,7 @@ <h4 id="_coreevents_exceptions">7.1.1. CoreEvents exceptions</h4>
<pre class="highlight"><code> if ((val.getEntityType() != IcalDefs.entityTypeAvailable) &amp;&amp;
(calendarNameExists(val, false, true) ||
calendarNameExists(val, true, true))) {
throwException(CalFacadeException.duplicateName, val.getName());
throwException(CalFacadeErrorCode.duplicateName, val.getName());
}</code></pre>
</div>
</div>
Expand Down

0 comments on commit af93b31

Please sign in to comment.