Reduce vertical whitespace
diff --git a/pom.xml b/pom.xml
index 9c09f01..a0f2dd7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,17 +14,14 @@
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
     <version>81</version>
   </parent>
-
   <artifactId>commons-crypto</artifactId>
   <version>1.3.0-SNAPSHOT</version>
   <packaging>jar</packaging>
-
   <name>Apache Commons Crypto</name>
   <description>
 Apache Commons Crypto is a cryptographic library optimized with AES-NI (Advanced Encryption Standard New Instructions).
@@ -71,9 +68,7 @@
 
 * Commons Crypto use [Java Cryptography Extension](http://docs.oracle.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec.html) provided by Java
 * Commons Crypto link to and use [OpenSSL](https://www.openssl.org/) ciphers
-
   </description>
-
 <!--
   Notes on testing:
 
@@ -94,34 +89,28 @@
   See LIBRARY_NAMES.txt for details of SSL Cryptographic library overrides
 
 -->
-
   <inceptionYear>2016</inceptionYear>
   <url>https://commons.apache.org/proper/commons-crypto/</url>
-
   <licenses>
     <license>
       <name>Apache-2.0</name>
       <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
     </license>
   </licenses>
-
   <issueManagement>
     <system>jira</system>
     <url>https://issues.apache.org/jira/browse/CRYPTO</url>
   </issueManagement>
-
   <scm>
     <connection>scm:git:http://gitbox.apache.org/repos/asf/commons-crypto.git</connection>
     <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-crypto.git</developerConnection>
     <url>https://gitbox.apache.org/repos/asf?p=commons-crypto.git</url>
     <tag>HEAD</tag>
   </scm>
-
   <ciManagement>
     <system>GitHub</system>
     <url>https://github.com/apache/commons-crypto/actions</url>
   </ciManagement>
-
   <distributionManagement>
     <site>
       <id>commons.site</id>
@@ -129,7 +118,6 @@
       <url>scm:svn:${commons.scmPubUrl}</url>
     </site>
   </distributionManagement>
-
   <properties>
     <commons.release.version>1.3.0</commons.release.version>
     <commons.release.desc>(Java 8 or above)</commons.release.desc>
@@ -162,7 +150,6 @@
     <!-- project.build.outputTimestamp is managed by Maven plugins, see https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
     <project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp>
   </properties>
-
   <profiles>
     <profile>
       <id>java8-10</id>
@@ -212,13 +199,11 @@
     <!-- Profile to build and run the benchmarks. Use 'mvn test -Pbenchmark', and add '-Dbenchmark=foo' to run only the foo benchmark -->
     <profile>
       <id>benchmark</id>
-
       <properties>
         <skipTests>true</skipTests>
         <benchmark>org.apache</benchmark>
         <jmh.version>1.37</jmh.version>
       </properties>
-
       <dependencies>
         <dependency>
           <groupId>org.openjdk.jmh</groupId>
@@ -226,16 +211,13 @@
           <version>${jmh.version}</version>
           <scope>test</scope>
         </dependency>
-
         <dependency>
           <groupId>org.openjdk.jmh</groupId>
           <artifactId>jmh-generator-annprocess</artifactId>
           <version>${jmh.version}</version>
           <scope>test</scope>
         </dependency>
-
       </dependencies>
-
       <build>
         <plugins>
           <!-- Enable the compilation of the benchmarks -->
@@ -285,7 +267,6 @@
         </plugins>
       </build>
     </profile>
-
     <!-- Allow testing of JNI code only -->
     <profile>
       <id>testjni</id>
@@ -307,7 +288,6 @@
         </plugins>
       </build>
     </profile>
-
     <!-- Allow testing of JNA code only -->
     <profile>
       <id>testjna</id>
@@ -329,7 +309,6 @@
         </plugins>
       </build>
     </profile>
-  
     <!-- Allow testing with a packaged jar -->
     <profile>
       <id>test-with-jar</id>
@@ -347,7 +326,6 @@
       </build>      
     </profile>
   </profiles>
-
   <build>
     <defaultGoal>clean apache-rat:check verify japicmp:cmp spotbugs:check pmd:check checkstyle:check javadoc:javadoc</defaultGoal>
     <resources>
@@ -656,7 +634,6 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
-
   <developers>
     <developer>
       <name>Aaron T Myers</name>
@@ -734,7 +711,6 @@
       </properties>
     </developer>
   </developers>
-
   <contributors>
     <contributor>
       <name>Colin Ma</name>
@@ -764,5 +740,4 @@
       <name>Arturo Bernal</name>
     </contributor>
   </contributors>
-
 </project>