diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 558a16b1..3aef2840 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -55,7 +55,7 @@ jobs:
$JBOSS_HOME/bin/standalone.sh &
until `$JBOSS_HOME/bin/jboss-cli.sh -c ":read-attribute(name=server-state)" 2> /dev/null | grep -q running`; do
sleep 1
- done
+ done
./runtest_remote.sh $ARCHETYPE_VERSION
$JBOSS_HOME/bin/jboss-cli.sh --connect command=:shutdown
echo " * :white_check_mark: Remote Tests" >> $GITHUB_STEP_SUMMARY
@@ -89,4 +89,3 @@ jobs:
rm -rf wildfly-jakartaee-webapp-archetype/testing/arq-remote
rm -rf wildfly-jakartaee-webapp-archetype/testing/arq-managed
rm -rf wildfly-subsystem-archetype/testing/example-subsystem
-
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 10b39a9a..189ef73f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -6,7 +6,7 @@ Archetype is a Maven project templating toolkit
Basic Steps
-----------
-To contribute to the Archetypes, fork the Archetypes repository to your own Git, clone your fork, commit your work on topic branches, and make pull requests.
+To contribute to the Archetypes, fork the Archetypes repository to your own Git, clone your fork, commit your work on topic branches, and make pull requests.
If you don't have the Git client (`git`), get it from:
@@ -58,7 +58,7 @@ Here are the steps in detail:
9. Push your local topic branch to your github forked repository. This will create a branch on your Git fork repository with the same name as your local topic branch name.
- git push origin HEAD
+ git push origin HEAD
10. Browse to the branch on your forked Git repository and [open a Pull Request](http://help.github.com/send-pull-requests/). Give it a clear title and description.
@@ -70,7 +70,7 @@ General Guidelines
License Information and Contributor Agreement
---------------------------------------------
- JBoss Developer Framework is licensed under the Apache License 2.0, as we believe it is one of the most permissive Open Source license. This allows developers to easily make use of the code samples in JBoss Developer Framework.
+ JBoss Developer Framework is licensed under the Apache License 2.0, as we believe it is one of the most permissive Open Source license. This allows developers to easily make use of the code samples in JBoss Developer Framework.
There is no need to sign a contributor agreement to contribute to JBoss Developer Framework. You just need to explicitly license any contribution under the AL 2.0. If you add any new files to JBoss Developer Framework, make sure to add the correct header.
@@ -79,7 +79,7 @@ License Information and Contributor Agreement
/*
* JBoss, Home of Professional Open Source
* Copyright , Red Hat, Inc. and/or its affiliates, and individual
- * contributors by the @authors tag. See the copyright.txt in the
+ * contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -87,7 +87,7 @@ License Information and Contributor Agreement
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
+ * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
@@ -98,7 +98,7 @@ License Information and Contributor Agreement
diff --git a/wildfly-getting-started-archetype/README.adoc b/wildfly-getting-started-archetype/README.adoc
index 4c5d1406..7b5df316 100644
--- a/wildfly-getting-started-archetype/README.adoc
+++ b/wildfly-getting-started-archetype/README.adoc
@@ -10,7 +10,7 @@ service and a HTML page to call the web service.
The generated project is configured to dynamically provision a WildFly server
and run the web application on the provisoned server so no manual installation
is required.
-
+
It is prepared for running Arquillian unit tests.
More details can be found in the file "src/main/resources/archetype-resources/README.txt", which is end-user doc and added to the resulting project.
diff --git a/wildfly-getting-started-archetype/src/main/resources-filtered/archetype-resources/pom.xml b/wildfly-getting-started-archetype/src/main/resources-filtered/archetype-resources/pom.xml
index fa6dbae5..814e3155 100644
--- a/wildfly-getting-started-archetype/src/main/resources-filtered/archetype-resources/pom.xml
+++ b/wildfly-getting-started-archetype/src/main/resources-filtered/archetype-resources/pom.xml
@@ -28,9 +28,9 @@
Insert description for your project here.
-
-
UTF-8
@@ -78,8 +78,8 @@
diff --git a/wildfly-getting-started-archetype/src/main/resources/archetype-resources/README.adoc b/wildfly-getting-started-archetype/src/main/resources/archetype-resources/README.adoc
index 690817d1..e4e2d09e 100644
--- a/wildfly-getting-started-archetype/src/main/resources/archetype-resources/README.adoc
+++ b/wildfly-getting-started-archetype/src/main/resources/archetype-resources/README.adoc
@@ -4,7 +4,7 @@
= ${artifactId}
-The `${artifactId}` project is a simple Jakarta EE application with a HTTP endpoint that is running in
+The `${artifactId}` project is a simple Jakarta EE application with a HTTP endpoint that is running in
https://wildfly.org[WildFly].
The `src/main` folder contains a simple 'Hello world' style Jakarta EE application using JAX-RS.
diff --git a/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/java/__defaultClassPrefix__Endpoint.java b/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/java/__defaultClassPrefix__Endpoint.java
index 84893d3c..4f5d8187 100644
--- a/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/java/__defaultClassPrefix__Endpoint.java
+++ b/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/java/__defaultClassPrefix__Endpoint.java
@@ -14,15 +14,15 @@
@Path("/")
public class ${defaultClassPrefix}Endpoint {
- @Inject
- private ${defaultClassPrefix}Service service;
+ @Inject
+ private ${defaultClassPrefix}Service service;
- @GET
- @Path("/{name}")
- @Produces(MediaType.TEXT_PLAIN)
- public Response sayHello(final @PathParam("name") String name) {
- String response = service.hello(name);
-
- return Response.ok(response).build();
- }
+ @GET
+ @Path("/{name}")
+ @Produces(MediaType.TEXT_PLAIN)
+ public Response sayHello(final @PathParam("name") String name) {
+ String response = service.hello(name);
+
+ return Response.ok(response).build();
+ }
}
diff --git a/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/webapp/index.html b/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/webapp/index.html
index 9bf724cc..91a1c504 100644
--- a/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/webapp/index.html
+++ b/wildfly-getting-started-archetype/src/main/resources/archetype-resources/src/main/webapp/index.html
@@ -75,7 +75,7 @@