Skip to content

Commit b0f3eed

Browse files
committed
Move to 8.1.0.GA
1 parent d46e7a9 commit b0f3eed

File tree

193 files changed

+427
-52235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+427
-52235
lines changed

README-source.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ The applications these projects produce are designed to be run on {productNameFu
8181
8282
All you need to build these projects is {buildRequirements}.
8383
84+
[NOTE]
85+
====
86+
All Quickstarts that support {productName} server provisioning activate such new feature by default, and this results in considerable more disk space usage.
87+
====
88+
8489
[[use_of_product_home_and_jboss_home_variables]]
8590
== Use of {jbossHomeName} and QUICKSTART_HOME Variables
8691

README.adoc

Lines changed: 0 additions & 331 deletions
This file was deleted.

README.html

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,20 @@ <h2 id="system_requirements">2. System Requirements</h2>
486486
<div class="paragraph">
487487
<p>All you need to build these projects is Java SE 17.0 or later, and Maven 3.6.0 or later.</p>
488488
</div>
489+
<div class="admonitionblock note">
490+
<table>
491+
<tr>
492+
<td class="icon">
493+
<div class="title">Note</div>
494+
</td>
495+
<td class="content">
496+
<div class="paragraph">
497+
<p>All Quickstarts that support JBoss EAP server provisioning activate such new feature by default, and this results in considerable more disk space usage.</p>
498+
</div>
499+
</td>
500+
</tr>
501+
</table>
502+
</div>
489503
</div>
490504
</div>
491505
<div class="sect1">
@@ -944,7 +958,7 @@ <h2 id="available_quickstarts">5. Table of Available Quickstarts</h2>
944958
</div>
945959
<div id="footer">
946960
<div id="footer-text">
947-
Last updated 2025-04-17 12:01:59 UTC
961+
Last updated 2025-08-05 09:39:34 UTC
948962
</div>
949963
</div>
950964
</body>

batch-processing/README.adoc

Lines changed: 0 additions & 1186 deletions
This file was deleted.

batch-processing/README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ <h4 id="undeploy_helm">Undeploy the JBoss EAP Source-to-Image (S2I) Quickstart f
10621062
</div>
10631063
<div id="footer">
10641064
<div id="footer-text">
1065-
Last updated 2025-04-17 11:52:59 UTC
1065+
Last updated 2025-08-05 09:29:21 UTC
10661066
</div>
10671067
</div>
10681068
</body>

batch-processing/pom.xml

Lines changed: 5 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<groupId>org.jboss.eap.quickstarts</groupId>
3333
<artifactId>batch-processing</artifactId>
34-
<version>8.1.0.Beta-redhat-SNAPSHOT</version>
34+
<version>8.1.0.GA</version>
3535
<packaging>war</packaging>
3636
<name>Quickstart: batch-processing</name>
3737
<description>Shows how to use a Chunk oriented batch processing</description>
@@ -48,8 +48,8 @@
4848
<!-- the Maven project should use the minimum Java SE version supported -->
4949
<maven.compiler.release>17</maven.compiler.release>
5050
<!-- the versions for BOMs, Dependencies and Plugins -->
51-
<version.bom.ee>8.1.0.Beta-redhat-00018</version.bom.ee>
52-
<version.plugin.eap>2.0.0.Beta1-redhat-00011</version.plugin.eap>
51+
<version.bom.ee>8.1.0.GA-redhat-00013</version.bom.ee>
52+
<version.plugin.eap>2.0.0.Final-redhat-00009</version.plugin.eap>
5353
<version.plugin.wildfly>5.1.1.Final</version.plugin.wildfly>
5454
</properties>
5555

@@ -327,27 +327,14 @@
327327
</profiles>
328328

329329
<repositories>
330-
<repository>
331-
<id>redhat-ea-maven-repository</id>
332-
<name>Red Hat Early Access Maven Repository</name>
333-
<url>https://maven.repository.redhat.com/earlyaccess/all/</url>
334-
<releases>
335-
<enabled>true</enabled>
336-
<updatePolicy>never</updatePolicy>
337-
</releases>
338-
<snapshots>
339-
<enabled>true</enabled>
340-
<updatePolicy>never</updatePolicy>
341-
</snapshots>
342-
<layout>default</layout>
343-
</repository>
344330
<repository>
345331
<id>redhat-ga-maven-repository</id>
346332
<name>Red Hat GA Maven Repository</name>
347333
<url>https://maven.repository.redhat.com/ga/</url>
348334
<releases>
349335
<enabled>true</enabled>
350-
<updatePolicy>never</updatePolicy>
336+
<!-- always check for the latest JBoss EAP manifest -->
337+
<updatePolicy>always</updatePolicy>
351338
</releases>
352339
<snapshots>
353340
<enabled>true</enabled>
@@ -371,17 +358,6 @@
371358
</repository>
372359
</repositories>
373360
<pluginRepositories>
374-
<pluginRepository>
375-
<id>redhat-ea-maven-repository</id>
376-
<name>Red Hat Early Access Maven Repository</name>
377-
<url>https://maven.repository.redhat.com/earlyaccess/all/</url>
378-
<releases>
379-
<enabled>true</enabled>
380-
</releases>
381-
<snapshots>
382-
<enabled>true</enabled>
383-
</snapshots>
384-
</pluginRepository>
385361
<pluginRepository>
386362
<id>redhat-ga-maven-repository</id>
387363
<name>Red Hat GA Maven Repository</name>

batch-processing/src/test/java/org/wildfly/quickstarts/batch/BasicRuntimeIT.java renamed to batch-processing/src/test/java/org/jboss/as/quickstarts/batch/BasicRuntimeIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.wildfly.quickstarts.batch;
16+
package org.jboss.as.quickstarts.batch;
1717

1818
import org.junit.Test;
1919

@@ -54,7 +54,7 @@ public void testHTTPEndpointIsAvailable() throws IOException, InterruptedExcepti
5454
.build();
5555
final HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
5656
assertEquals(200, response.statusCode());
57-
final String[] bodyLines = response.body().toString().split(System.lineSeparator());
57+
final String[] bodyLines = response.body().lines().toArray(String[]::new);
5858
assertEquals("<meta http-equiv=\"Refresh\" content=\"0; URL=batch.jsf\">", bodyLines[bodyLines.length -3]);
5959
}
6060
}

0 commit comments

Comments
 (0)