This is an automated email from the ASF dual-hosted git repository.

xiangying pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-java-contrib.git


The following commit(s) were added to refs/heads/main by this push:
     new c15093e  [Build] Update Spotless configuration (#5)
c15093e is described below

commit c15093e8ffad426ddb1d9d046ae45c2b76210283
Author: Xiangying Meng <[email protected]>
AuthorDate: Fri Aug 23 20:56:25 2024 +0800

    [Build] Update Spotless configuration (#5)
    
    * [Build] Update Spotless configuration
    
    * delete comment
    
    * delete endWithNewLine
    
    * Delete indentAttribute and add sort_order.xml
    
    * license
    
    * google-java-format.version
    
    ---------
    
    Co-authored-by: xiangying <[email protected]>
---
 pom.xml                                            |  33 +-
 pulsar-auth-contrib/pom.xml                        |   6 +-
 pulsar-bookkeeper-contrib/pom.xml                  |   7 +-
 pulsar-client-common-contrib/pom.xml               |   7 +-
 .../pulsar/client/api/impl/package-info.java       |   2 +-
 .../org/apache/pulsar/client/api/package-info.java |   2 +-
 pulsar-connector-contrib/pom.xml                   |   6 +-
 pulsar-function-contrib/pom.xml                    |   6 +-
 pulsar-interceptor-contrib/pom.xml                 |   8 +-
 pulsar-loadbalance-contrib/pom.xml                 |   6 +-
 pulsar-metrics-contrib/pom.xml                     |   6 +-
 pulsar-transaction-contrib/pom.xml                 |   6 +-
 sort_order.xml                                     | 668 +++++++++++++++++++++
 13 files changed, 717 insertions(+), 46 deletions(-)

diff --git a/pom.xml b/pom.xml
index 10a1f14..ba39698 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,8 +14,7 @@
     limitations under the License.
 
 -->
-<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/xsd/maven-4.0.0.xsd";>
+<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/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -45,6 +44,7 @@
         <license-maven-plugin.version>4.5</license-maven-plugin.version>
         <org.testing.version>7.10.2</org.testing.version>
         <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
+        <google-java-format.version>1.10.0</google-java-format.version>
     </properties>
 
     <modules>
@@ -130,10 +130,34 @@
                 <configuration>
                     <java>
                         <googleJavaFormat>
-                            <version>1.7</version>
+                            <version>${google-java-format.version}</version>
                             <style>GOOGLE</style>
                         </googleJavaFormat>
                     </java>
+                    <pom>
+                        <includes>
+                            <include>pom.xml</include>
+                        </includes>
+                        <sortPom>
+                            <encoding>UTF-8</encoding>
+                            <lineSeparator>${line.separator}</lineSeparator>
+                            <expandEmptyElements>true</expandEmptyElements>
+                            
<spaceBeforeCloseEmptyElement>false</spaceBeforeCloseEmptyElement>
+                            <keepBlankLines>true</keepBlankLines>
+                            <nrOfIndentSpace>4</nrOfIndentSpace>
+                            <indentBlankLines>false</indentBlankLines>
+                            <indentSchemaLocation>false</indentSchemaLocation>
+                            
<predefinedSortOrder>recommended_2008_06</predefinedSortOrder>
+                            <sortOrderFile>./sort_order.xml</sortOrderFile>
+                            
<sortDependencies>groupId,artifactId</sortDependencies>
+                            
<sortDependencyManagement>true</sortDependencyManagement>
+                            
<sortDependencyExclusions>groupId,artifactId</sortDependencyExclusions>
+                            <sortPlugins>groupId,artifactId</sortPlugins>
+                            <sortProperties>false</sortProperties>
+                            <sortModules>false</sortModules>
+                            <sortExecutions>false</sortExecutions>
+                        </sortPom>
+                    </pom>
                 </configuration>
                 <executions>
                     <execution>
@@ -160,7 +184,8 @@
                     
<suppressionsLocation>./src/main/resources/suppressions.xml</suppressionsLocation>
                     
<includeTestSourceDirectory>true</includeTestSourceDirectory>
                     <encoding>UTF-8</encoding>
-                    <excludes>**/*.proto</excludes> <!-- Example exclusion -->
+                    <excludes>**/*.proto</excludes>
+                    <!-- Example exclusion -->
                 </configuration>
                 <executions>
                     <execution>
diff --git a/pulsar-auth-contrib/pom.xml b/pulsar-auth-contrib/pom.xml
index 15eba44..95ba76e 100644
--- a/pulsar-auth-contrib/pom.xml
+++ b/pulsar-auth-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -27,4 +25,4 @@
 
     <artifactId>pulsar-auth-contrib</artifactId>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/pulsar-bookkeeper-contrib/pom.xml 
b/pulsar-bookkeeper-contrib/pom.xml
index 8c94b80..90c2125 100644
--- a/pulsar-bookkeeper-contrib/pom.xml
+++ b/pulsar-bookkeeper-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -27,5 +25,4 @@
 
     <artifactId>pulsar-bookkeeper-contrib</artifactId>
 
-
-</project>
\ No newline at end of file
+</project>
diff --git a/pulsar-client-common-contrib/pom.xml 
b/pulsar-client-common-contrib/pom.xml
index 2619c53..722fa20 100644
--- a/pulsar-client-common-contrib/pom.xml
+++ b/pulsar-client-common-contrib/pom.xml
@@ -14,10 +14,7 @@
     limitations under the License.
 
 -->
-
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
@@ -36,4 +33,4 @@
         </dependency>
     </dependencies>
 
-</project>
\ No newline at end of file
+</project>
diff --git 
a/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/impl/package-info.java
 
b/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/impl/package-info.java
index 1a92fda..86894d9 100644
--- 
a/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/impl/package-info.java
+++ 
b/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/impl/package-info.java
@@ -11,4 +11,4 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.pulsar.client.api.impl;
\ No newline at end of file
+package org.apache.pulsar.client.api.impl;
diff --git 
a/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/package-info.java
 
b/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/package-info.java
index d940e2c..5f4fe76 100644
--- 
a/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/package-info.java
+++ 
b/pulsar-client-common-contrib/src/main/java/org/apache/pulsar/client/api/package-info.java
@@ -11,4 +11,4 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.pulsar.client.api;
\ No newline at end of file
+package org.apache.pulsar.client.api;
diff --git a/pulsar-connector-contrib/pom.xml b/pulsar-connector-contrib/pom.xml
index 1730b45..45335ed 100644
--- a/pulsar-connector-contrib/pom.xml
+++ b/pulsar-connector-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -26,4 +24,4 @@
     <inceptionYear>2024</inceptionYear>
 
     <artifactId>pulsar-connector-contrib</artifactId>
-</project>
\ No newline at end of file
+</project>
diff --git a/pulsar-function-contrib/pom.xml b/pulsar-function-contrib/pom.xml
index ba77485..41ffcf7 100644
--- a/pulsar-function-contrib/pom.xml
+++ b/pulsar-function-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -27,4 +25,4 @@
 
     <artifactId>pulsar-function-contrib</artifactId>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/pulsar-interceptor-contrib/pom.xml 
b/pulsar-interceptor-contrib/pom.xml
index ef5f258..f5f25d1 100644
--- a/pulsar-interceptor-contrib/pom.xml
+++ b/pulsar-interceptor-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -27,6 +25,4 @@
 
     <artifactId>pulsar-interceptor-contrib</artifactId>
 
-
-
-</project>
\ No newline at end of file
+</project>
diff --git a/pulsar-loadbalance-contrib/pom.xml 
b/pulsar-loadbalance-contrib/pom.xml
index b582721..50438e3 100644
--- a/pulsar-loadbalance-contrib/pom.xml
+++ b/pulsar-loadbalance-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -27,4 +25,4 @@
 
     <artifactId>pulsar-loadbalance-contrib</artifactId>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/pulsar-metrics-contrib/pom.xml b/pulsar-metrics-contrib/pom.xml
index 26043b2..bd5e4e6 100644
--- a/pulsar-metrics-contrib/pom.xml
+++ b/pulsar-metrics-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -26,4 +24,4 @@
     <inceptionYear>2024</inceptionYear>
 
     <artifactId>pulsar-metrics-contrib</artifactId>
-</project>
\ No newline at end of file
+</project>
diff --git a/pulsar-transaction-contrib/pom.xml 
b/pulsar-transaction-contrib/pom.xml
index 2dd8dfd..c9f0077 100644
--- a/pulsar-transaction-contrib/pom.xml
+++ b/pulsar-transaction-contrib/pom.xml
@@ -14,9 +14,7 @@
     limitations under the License.
 
 -->
-<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+<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 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache</groupId>
@@ -27,4 +25,4 @@
 
     <artifactId>pulsar-transaction-contrib</artifactId>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/sort_order.xml b/sort_order.xml
new file mode 100644
index 0000000..ce1079b
--- /dev/null
+++ b/sort_order.xml
@@ -0,0 +1,668 @@
+<!--
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    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,
+    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.
+
+-->
+<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
+                      http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion />
+
+    <!-- Parent -->
+    <parent>
+        <groupId />
+        <artifactId />
+        <version />
+        <relativePath />
+    </parent>
+
+    <!-- The Basics -->
+    <groupId />
+    <artifactId />
+    <version />
+    <packaging />
+
+    <!-- Description -->
+    <name />
+    <description />
+
+    <prerequisites>
+        <maven />
+    </prerequisites>
+
+    <modules>
+        <module />
+    </modules>
+
+    <properties />
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId />
+                <artifactId />
+                <version />
+                <classifier />
+                <type />
+                <scope />
+                <systemPath />
+                <optional />
+                <exclusions>
+                    <exclusion>
+                        <groupId />
+                        <artifactId />
+                    </exclusion>
+                </exclusions>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+    <dependencies>
+        <dependency>
+            <groupId />
+            <artifactId />
+            <version />
+            <classifier />
+            <type />
+            <scope />
+            <systemPath />
+            <optional />
+            <exclusions>
+                <exclusion>
+                    <groupId />
+                    <artifactId />
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
+
+    <!-- Build Settings -->
+    <build>
+        <defaultGoal />
+        <directory />
+        <finalName />
+
+        <!-- Directories -->
+        <sourceDirectory />
+        <scriptSourceDirectory />
+        <testSourceDirectory />
+        <outputDirectory />
+        <testOutputDirectory />
+
+        <filters>
+            <filter />
+        </filters>
+        <resources>
+            <resource>
+                <targetPath />
+                <filtering />
+                <directory />
+                <includes>
+                    <include />
+                </includes>
+                <excludes>
+                    <exclude />
+                </excludes>
+            </resource>
+        </resources>
+        <testResources>
+            <testResource>
+                <targetPath />
+                <filtering />
+                <directory />
+                <includes>
+                    <include />
+                </includes>
+                <excludes>
+                    <exclude />
+                </excludes>
+            </testResource>
+        </testResources>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId />
+                    <artifactId />
+                    <version />
+                    <extensions />
+                    <goals />
+                    <inherited />
+                    <configuration />
+                    <dependencies>
+                        <dependency>
+                            <groupId />
+                            <artifactId />
+                            <version />
+                            <classifier />
+                            <type />
+                            <scope />
+                            <systemPath />
+                            <optional />
+                            <exclusions>
+                                <exclusion>
+                                    <groupId />
+                                    <artifactId />
+                                </exclusion>
+                            </exclusions>
+                        </dependency>
+                    </dependencies>
+                    <executions>
+                        <execution>
+                            <id />
+                            <goals>
+                                <goal />
+                            </goals>
+                            <phase />
+                            <inherited />
+                            <configuration />
+                        </execution>
+                    </executions>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId />
+                <artifactId />
+                <version />
+                <extensions />
+                <goals />
+                <inherited />
+                <configuration />
+                <dependencies>
+                    <dependency>
+                        <groupId />
+                        <artifactId />
+                        <version />
+                        <classifier />
+                        <type />
+                        <scope />
+                        <systemPath />
+                        <optional />
+                        <exclusions>
+                            <exclusion>
+                                <groupId />
+                                <artifactId />
+                            </exclusion>
+                        </exclusions>
+                    </dependency>
+                </dependencies>
+                <executions>
+                    <execution>
+                        <id />
+                        <goals>
+                            <goal />
+                        </goals>
+                        <phase />
+                        <inherited />
+                        <configuration />
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+        <extensions>
+            <extension>
+                <groupId />
+                <artifactId />
+                <version />
+            </extension>
+        </extensions>
+    </build>
+    <reporting>
+        <outputDirectory />
+        <excludeDefaults />
+        <plugins>
+            <plugin>
+                <groupId />
+                <artifactId />
+                <version />
+                <inherited />
+                <configuration />
+                <reportSets>
+                    <reportSet>
+                        <id />
+                        <reports>
+                            <report />
+                        </reports>
+                        <inherited />
+                        <configuration />
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+    <reports />
+
+    <!-- More Project Information -->
+    <url />
+    <inceptionYear />
+    <organization>
+        <name />
+        <url />
+    </organization>
+    <licenses>
+        <license>
+            <name />
+            <url />
+            <distribution />
+            <comments />
+        </license>
+    </licenses>
+    <developers>
+        <developer>
+            <id />
+            <name />
+            <email />
+            <url />
+            <organization />
+            <organizationUrl />
+            <roles>
+                <role />
+            </roles>
+            <timezone />
+            <properties />
+        </developer>
+    </developers>
+    <contributors>
+        <contributor>
+            <name />
+            <email />
+            <url />
+            <organization />
+            <organizationUrl />
+            <roles>
+                <role />
+            </roles>
+            <timezone />
+            <properties />
+        </contributor>
+    </contributors>
+    <mailingLists>
+        <mailingList>
+            <name />
+            <subscribe />
+            <unsubscribe />
+            <post />
+            <archive />
+            <otherArchives>
+                <otherArchive />
+            </otherArchives>
+        </mailingList>
+    </mailingLists>
+
+    <!-- Environment Settings -->
+    <scm>
+        <connection />
+        <developerConnection />
+        <url />
+        <tag />
+    </scm>
+    <issueManagement>
+        <system />
+        <url />
+    </issueManagement>
+    <ciManagement>
+        <system />
+        <url />
+        <notifiers>
+            <notifier>
+                <type />
+                <address />
+                <sendOnError />
+                <sendOnFailure />
+                <sendOnSuccess />
+                <sendOnWarning />
+                <configuration />
+            </notifier>
+        </notifiers>
+    </ciManagement>
+
+    <repositories>
+        <repository>
+            <releases>
+                <enabled />
+                <updatePolicy />
+                <checksumPolicy />
+            </releases>
+            <snapshots>
+                <enabled />
+                <updatePolicy />
+                <checksumPolicy />
+            </snapshots>
+            <id />
+            <name />
+            <url />
+            <layout />
+        </repository>
+    </repositories>
+    <pluginRepositories>
+        <pluginRepository>
+            <releases>
+                <enabled />
+                <updatePolicy />
+                <checksumPolicy />
+            </releases>
+            <snapshots>
+                <enabled />
+                <updatePolicy />
+                <checksumPolicy />
+            </snapshots>
+            <id />
+            <name />
+            <url />
+            <layout />
+        </pluginRepository>
+    </pluginRepositories>
+
+    <distributionManagement>
+        <repository>
+            <uniqueVersion />
+            <id />
+            <name />
+            <url />
+            <layout />
+        </repository>
+        <snapshotRepository>
+            <uniqueVersion />
+            <id />
+            <name />
+            <url />
+            <layout />
+        </snapshotRepository>
+        <site>
+            <id />
+            <name />
+            <url />
+        </site>
+        <relocation>
+            <groupId />
+            <artifactId />
+            <version />
+            <message />
+        </relocation>
+        <downloadUrl />
+        <status />
+    </distributionManagement>
+
+    <profiles>
+        <profile>
+            <id />
+            <activation>
+                <activeByDefault />
+                <jdk />
+                <os>
+                    <name />
+                    <family />
+                    <arch />
+                    <version />
+                </os>
+                <property>
+                    <name />
+                    <value />
+                </property>
+                <file>
+                    <exists />
+                    <missing />
+                </file>
+            </activation>
+            <modules>
+                <module />
+            </modules>
+            <properties />
+            <dependencyManagement>
+                <dependencies>
+                    <dependency>
+                        <groupId />
+                        <artifactId />
+                        <version />
+                        <classifier />
+                        <type />
+                        <scope />
+                        <systemPath />
+                        <optional />
+                        <exclusions>
+                            <exclusion>
+                                <groupId />
+                                <artifactId />
+                            </exclusion>
+                        </exclusions>
+                    </dependency>
+                </dependencies>
+            </dependencyManagement>
+            <dependencies>
+                <dependency>
+                    <groupId />
+                    <artifactId />
+                    <version />
+                    <classifier />
+                    <type />
+                    <scope />
+                    <systemPath />
+                    <optional />
+                    <exclusions>
+                        <exclusion>
+                            <groupId />
+                            <artifactId />
+                        </exclusion>
+                    </exclusions>
+                </dependency>
+            </dependencies>
+            <build>
+                <defaultGoal />
+                <directory />
+                <finalName />
+                <filters>
+                    <filter />
+                </filters>
+                <resources>
+                    <resource>
+                        <targetPath />
+                        <filtering />
+                        <directory />
+                        <includes>
+                            <include />
+                        </includes>
+                        <excludes>
+                            <exclude />
+                        </excludes>
+                    </resource>
+                </resources>
+                <testResources>
+                    <testResource>
+                        <targetPath />
+                        <filtering />
+                        <directory />
+                        <includes>
+                            <include />
+                        </includes>
+                        <excludes>
+                            <exclude />
+                        </excludes>
+                    </testResource>
+                </testResources>
+                <pluginManagement>
+                    <plugins>
+                        <plugin>
+                            <groupId />
+                            <artifactId />
+                            <version />
+                            <extensions />
+                            <goals />
+                            <inherited />
+                            <configuration />
+                            <dependencies>
+                                <dependency>
+                                    <groupId />
+                                    <artifactId />
+                                    <version />
+                                    <classifier />
+                                    <type />
+                                    <scope />
+                                    <systemPath />
+                                    <optional />
+                                    <exclusions>
+                                        <exclusion>
+                                            <groupId />
+                                            <artifactId />
+                                        </exclusion>
+                                    </exclusions>
+                                </dependency>
+                            </dependencies>
+                            <executions>
+                                <execution>
+                                    <id />
+                                    <goals>
+                                        <goal />
+                                    </goals>
+                                    <phase />
+                                    <inherited />
+                                    <configuration />
+                                </execution>
+                            </executions>
+                        </plugin>
+                    </plugins>
+                </pluginManagement>
+                <plugins>
+                    <plugin>
+                        <groupId />
+                        <artifactId />
+                        <version />
+                        <extensions />
+                        <goals />
+                        <inherited />
+                        <configuration />
+                        <dependencies>
+                            <dependency>
+                                <groupId />
+                                <artifactId />
+                                <version />
+                                <classifier />
+                                <type />
+                                <scope />
+                                <systemPath />
+                                <optional />
+                                <exclusions>
+                                    <exclusion>
+                                        <groupId />
+                                        <artifactId />
+                                    </exclusion>
+                                </exclusions>
+                            </dependency>
+                        </dependencies>
+                        <executions>
+                            <execution>
+                                <id />
+                                <goals>
+                                    <goal />
+                                </goals>
+                                <phase />
+                                <inherited />
+                                <configuration />
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+            <reporting>
+                <outputDirectory />
+                <excludeDefaults />
+                <plugins>
+                    <plugin>
+                        <groupId />
+                        <artifactId />
+                        <version />
+                        <inherited />
+                        <configuration />
+                        <reportSets>
+                            <reportSet>
+                                <id />
+                                <reports>
+                                    <report />
+                                </reports>
+                                <inherited />
+                                <configuration />
+                            </reportSet>
+                        </reportSets>
+                    </plugin>
+                </plugins>
+            </reporting>
+            <reports />
+            <repositories>
+                <repository>
+                    <releases>
+                        <enabled />
+                        <updatePolicy />
+                        <checksumPolicy />
+                    </releases>
+                    <snapshots>
+                        <enabled />
+                        <updatePolicy />
+                        <checksumPolicy />
+                    </snapshots>
+                    <id />
+                    <name />
+                    <url />
+                    <layout />
+                </repository>
+            </repositories>
+            <pluginRepositories>
+                <pluginRepository>
+                    <releases>
+                        <enabled />
+                        <updatePolicy />
+                        <checksumPolicy />
+                    </releases>
+                    <snapshots>
+                        <enabled />
+                        <updatePolicy />
+                        <checksumPolicy />
+                    </snapshots>
+                    <id />
+                    <name />
+                    <url />
+                    <layout />
+                </pluginRepository>
+            </pluginRepositories>
+            <distributionManagement>
+                <repository>
+                    <uniqueVersion />
+                    <id />
+                    <name />
+                    <url />
+                    <layout />
+                </repository>
+                <snapshotRepository>
+                    <uniqueVersion />
+                    <id />
+                    <name />
+                    <url />
+                    <layout />
+                </snapshotRepository>
+                <site>
+                    <id />
+                    <name />
+                    <url />
+                </site>
+                <relocation>
+                    <groupId />
+                    <artifactId />
+                    <version />
+                    <message />
+                </relocation>
+                <downloadUrl />
+                <status />
+            </distributionManagement>
+        </profile>
+    </profiles>
+</project>
\ No newline at end of file


Reply via email to