update scm to git, update mysql-connector-java, log4j2, fix port in readme, indentation in pom
diff --git a/pom.xml b/pom.xml
index 4ec15db..b84cc9f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,7 +32,7 @@
 
   <name>Archetype - Turbine 5.0 WebApp</name>
   <description>This archetype sets up a web application project based on Apache Turbine 5.0</description>
-  <url>http://turbine.apache.org</url>
+  <url>https://turbine.apache.org</url>
 
   <inceptionYear>2011</inceptionYear>
 
@@ -42,7 +42,7 @@
     <url>scm:git:https://github.com/apache/turbine-archetypes</url>
   </scm>
   
-<build>
+  <build>
     <extensions>
       <extension>
         <groupId>org.apache.maven.archetype</groupId>
diff --git a/src/main/resources/archetype-resources/docs/README.txt b/src/main/resources/archetype-resources/docs/README.txt
index 8cb124a..9a527c2 100644
--- a/src/main/resources/archetype-resources/docs/README.txt
+++ b/src/main/resources/archetype-resources/docs/README.txt
@@ -124,7 +124,9 @@
 If you get an error like "The driver has not received any packets" probably the database is not up and running or the port may be another one.
 
 Last step on the command line is run the server by invoking 
-mvn jetty:run         ## Now you can launch your new Turbine application by default http://localhost:8080/app
+mvn jetty:run         
+
+## Now you can launch your new Turbine application by default http://localhost:8081/app (check port in pom.xml, if needed).
 
 ### Logs 
 
diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml
index 6d7f176..fcf30b3 100644
--- a/src/main/resources/archetype-resources/pom.xml
+++ b/src/main/resources/archetype-resources/pom.xml
@@ -72,17 +72,17 @@
         </testResources>
         <plugins>
             <!-- test will not fail in turbine 4.0.1 -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<version>3.0.0-M2</version>
-				<configuration>
-					<skipTests>#var("skipTests")</skipTests>
-					<!--default setting is forkCount=1/reuseForks=true -->
-					<reuseForks>false</reuseForks>
-					<forkCount>1</forkCount>
-				</configuration>
-			</plugin>            
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>3.0.0-M2</version>
+                <configuration>
+                  <skipTests>#var("skipTests")</skipTests>
+                  <!--default setting is forkCount=1/reuseForks=true -->
+                  <reuseForks>false</reuseForks>
+                  <forkCount>1</forkCount>
+                </configuration>
+            </plugin>
             <plugin>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>3.8.0</version>
@@ -200,7 +200,7 @@
             <dependency>
               <artifactId>mysql-connector-java</artifactId>
               <groupId>mysql</groupId>
-              <version>8.0.15</version>
+              <version>8.0.17</version>
             </dependency>
           </dependencies>
           <!-- this is mysql specific -->
@@ -267,7 +267,7 @@
       <dependency>
         <artifactId>mysql-connector-java</artifactId>
         <groupId>mysql</groupId>
-        <version>8.0.15</version>
+        <version>8.0.17</version>
       </dependency>
        <!-- Allow lookup of #var("web:rootDir") in log4j2 file -->
         <dependency>
@@ -407,12 +407,12 @@
         <maven.compile.source>1.8</maven.compile.source>
         <maven.compile.target>1.8</maven.compile.target>
         <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
-        <log4j2.version>2.11.1</log4j2.version>
+        <log4j2.version>2.12.0</log4j2.version>
         <torque.version>4.0</torque.version>
         <fulcrum.json>2.0.0</fulcrum.json>
         <fulcrum.intake>2.0.0</fulcrum.intake>
         <fulcrum.security>1.1.3</fulcrum.security>
-        <turbine.core>5.0-SNAPSHOT</turbine.core>
+        <turbine.core>5.0</turbine.core>
         <skipTests>true</skipTests>
     </properties>