]> source.dussan.org Git - poi.git/commitdiff
remove tabs
authorPJ Fanning <fanningpj@apache.org>
Thu, 17 Dec 2020 20:31:46 +0000 (20:31 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 17 Dec 2020 20:31:46 +0000 (20:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884570 13f79535-47bb-0310-9956-ffa450edef68

sonar/examples/pom.xml
sonar/excelant/pom.xml
sonar/ooxml-full/pom.xml
sonar/scratchpad/pom.xml

index 4c05cf549db4007c354d7178271c699f59ece2b5..7e5c43910a74ead72a0cd96317d056b068f17d40 100644 (file)
 
     <name>Apache POI Examples package</name>
 
-       <properties>
-               <!-- There are no junit tests in the examples module -->
-               <maven.test.skip>true</maven.test.skip>
-       </properties>
+    <properties>
+        <!-- There are no junit tests in the examples module -->
+        <maven.test.skip>true</maven.test.skip>
+    </properties>
 
     <build>
-               <plugins>
-                       <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
-                       <plugin>
-                               <artifactId>maven-resources-plugin</artifactId>
-                               <version>${maven.plugin.resources.version}</version>
-                               <executions>
-                                       <execution>
-                                               <id>copy-sources</id>
-                                               <!-- here the phase you need -->
-                                               <phase>generate-sources</phase>
-                                               <goals>
-                                                       <goal>copy-resources</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <outputDirectory>${basedir}/src/main/java</outputDirectory>
-                                                       <resources>
-                                                               <resource>
-                                                                       <directory>../../src/examples/src</directory>
-                                                               </resource>
-                                                       </resources>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
-                       <!-- clean copied sources afterwards -->
-                       <plugin>
+        <plugins>
+            <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>${maven.plugin.resources.version}</version>
+                <executions>
+                    <execution>
+                        <id>copy-sources</id>
+                        <!-- here the phase you need -->
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/src/main/java</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../../src/examples/src</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <!-- clean copied sources afterwards -->
+            <plugin>
                 <artifactId>maven-clean-plugin</artifactId>
                 <version>${maven.plugin.clean.version}</version>
                 <configuration>
                     </filesets>
                 </configuration>
             </plugin>
-               </plugins>
+        </plugins>
     </build>
 
     <dependencies>
-               <dependency>
-                       <groupId>${project.groupId}</groupId>
-                       <artifactId>poi-main</artifactId>
-                       <version>${project.version}</version>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>poi-main</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>poi-ooxml</artifactId>
+            <version>${project.version}</version>
         </dependency>
-               <dependency>
-                       <groupId>${project.groupId}</groupId>
-                       <artifactId>poi-ooxml</artifactId>
-                       <version>${project.version}</version>
-               </dependency>
     </dependencies>
 </project>
index 73e92fe264e17a96df9fd8ce142afc9811bf6763..852af1beef74bce1ece6789d1e4da9e56fb9e1f1 100644 (file)
     <name>Apache POI ExcelAnt package</name>
 
     <build>
-               <plugins>
-                       <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
-                       <plugin>
-                               <artifactId>maven-resources-plugin</artifactId>
-                               <version>${maven.plugin.resources.version}</version>
-                               <executions>
-                                       <execution>
-                                               <id>copy-sources</id>
-                                               <!-- here the phase you need -->
-                                               <phase>generate-sources</phase>
-                                               <goals>
-                                                       <goal>copy-resources</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <outputDirectory>${basedir}/src/main/java</outputDirectory>
-                                                       <resources>
-                                                               <resource>
-                                                                       <directory>../../src/excelant/java</directory>
-                                                               </resource>
-                                                       </resources>
-                                               </configuration>
-                                       </execution>
-                                       <execution>
-                                               <id>copy-resources</id>
-                                               <!-- here the phase you need -->
-                                               <phase>generate-resources</phase>
-                                               <goals>
-                                                       <goal>copy-resources</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <outputDirectory>${basedir}/src/main/resources</outputDirectory>
-                                                       <resources>
-                                                               <resource>
-                                                                       <directory>../../src/excelant/resources</directory>
-                                                               </resource>
-                                                       </resources>
-                                               </configuration>
-                                       </execution>
-                                       <execution>
-                                               <id>copy-tests</id>
-                                               <!-- here the phase you need -->
-                                               <phase>generate-test-sources</phase>
-                                               <goals>
-                                                       <goal>copy-resources</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <outputDirectory>${basedir}/src/test/java</outputDirectory>
-                                                       <resources>
-                                                               <resource>
-                                                                       <directory>../../src/excelant/testcases</directory>
-                                                               </resource>
-                                                       </resources>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
-                       <!-- clean copied sources afterwards -->
-                       <plugin>
+        <plugins>
+            <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>${maven.plugin.resources.version}</version>
+                <executions>
+                    <execution>
+                        <id>copy-sources</id>
+                        <!-- here the phase you need -->
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/src/main/java</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../../src/excelant/java</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>copy-resources</id>
+                        <!-- here the phase you need -->
+                        <phase>generate-resources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/src/main/resources</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../../src/excelant/resources</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>copy-tests</id>
+                        <!-- here the phase you need -->
+                        <phase>generate-test-sources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/src/test/java</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../../src/excelant/testcases</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <!-- clean copied sources afterwards -->
+            <plugin>
                 <artifactId>maven-clean-plugin</artifactId>
                 <version>${maven.plugin.clean.version}</version>
                 <configuration>
                     </filesets>
                 </configuration>
             </plugin>
-               </plugins>
+        </plugins>
     </build>
 
     <dependencies>
-               <dependency>
-                       <groupId>${project.groupId}</groupId>
-                       <artifactId>poi-main</artifactId>
-                       <version>${project.version}</version>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>poi-main</artifactId>
+            <version>${project.version}</version>
         </dependency>
-               <dependency>
-                       <groupId>${project.groupId}</groupId>
-                       <artifactId>poi-main</artifactId>
-                       <version>${project.version}</version>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>poi-main</artifactId>
+            <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>${project.groupId}</groupId>
-                       <artifactId>poi-ooxml</artifactId>
-                       <version>${project.version}</version>
-               </dependency>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>poi-ooxml</artifactId>
+            <version>${project.version}</version>
+        </dependency>
 
-               <dependency>
-                       <groupId>org.apache.ant</groupId>
-                       <artifactId>ant</artifactId>
-                       <version>1.10.9</version>
+        <dependency>
+            <groupId>org.apache.ant</groupId>
+            <artifactId>ant</artifactId>
+            <version>1.10.9</version>
         </dependency>
     </dependencies>
 </project>
index 6597541a20c0bb1cb42da3705d69e4613e01427d..6a7b26a895c9cf2936ca6fc5caa0125df1754936 100644 (file)
 
     <name>Apache POI - Openxmlformats Schema package</name>
 
-       <properties>
-               <!-- see http://docs.codehaus.org/display/SONAR/Narrowing+the+Focus for details of this property -->
-               <sonar.exclusions>target/generated-sources/*</sonar.exclusions>
-               <maven.compiler.fork>true</maven.compiler.fork>
-       </properties>
+    <properties>
+        <!-- see http://docs.codehaus.org/display/SONAR/Narrowing+the+Focus for details of this property -->
+        <sonar.exclusions>target/generated-sources/*</sonar.exclusions>
+        <maven.compiler.fork>true</maven.compiler.fork>
+    </properties>
 
     <build>
-               <plugins>
-                       <plugin>
-                               <artifactId>maven-antrun-plugin</artifactId>
-                               <version>${maven.plugin.antrun.version}</version>
-                               <executions>
-                                       <execution>
-                                               <id>copy-xmltype-and-xsdconfig</id>
-                                               <phase>generate-sources</phase>
-                                               <goals>
-                                                       <goal>run</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <target>
-                                                               <property name="xsdir" value="${basedir}/../../src/ooxml/resources/org/apache/poi"/>
-                                                               <copy todir="${basedir}/target/schemas">
-                                                                       <zipfileset src="${xsdir}/schemas/OfficeOpenXML-XMLSchema-Transitional.zip"/>
-                                                                       <zipfileset src="${xsdir}/schemas/OpenPackagingConventions-XMLSchema.zip" includes="opc-digSig.xsd,opc-relationships.xsd"/>
-                                                                       <fileset dir="${xsdir}/xdgf" includes="*.xsd,*.xsdconfig"/>
-                                                                       <fileset dir="${xsdir}/schemas" includes="*.xsd,*.xsdconfig"/>
-                                                                       <fileset dir="${xsdir}/poifs/crypt" includes="signatureInfo.xsd"/>
-                                                               </copy>
-                                                       </target>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
+        <plugins>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>${maven.plugin.antrun.version}</version>
+                <executions>
+                    <execution>
+                        <id>copy-xmltype-and-xsdconfig</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <target>
+                                <property name="xsdir" value="${basedir}/../../src/ooxml/resources/org/apache/poi"/>
+                                <copy todir="${basedir}/target/schemas">
+                                    <zipfileset src="${xsdir}/schemas/OfficeOpenXML-XMLSchema-Transitional.zip"/>
+                                    <zipfileset src="${xsdir}/schemas/OpenPackagingConventions-XMLSchema.zip" includes="opc-digSig.xsd,opc-relationships.xsd"/>
+                                    <fileset dir="${xsdir}/xdgf" includes="*.xsd,*.xsdconfig"/>
+                                    <fileset dir="${xsdir}/schemas" includes="*.xsd,*.xsdconfig"/>
+                                    <fileset dir="${xsdir}/poifs/crypt" includes="signatureInfo.xsd"/>
+                                </copy>
+                            </target>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
 
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>exec-maven-plugin</artifactId>
-                               <version>3.0.0</version>
-                               <executions>
-                                       <execution>
-                                               <phase>process-sources</phase>
-                                               <goals>
-                                                       <!-- need to use exec instead of java, because SchemaCompiler calls System.exit() -->
-                                                       <goal>exec</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                               <configuration>
-                                       <executable>java</executable>
-                                       <arguments>
-                                               <argument>-classpath</argument>
-                                               <!-- automatically creates the classpath using all project dependencies,
-                                                        also adding the project build directory -->
-                                               <classpath/>
-                                               <argument>org.apache.xmlbeans.impl.tool.SchemaCompiler</argument>
-                                               <argument>-srconly</argument>
-                                               <argument>-name</argument>
-                                               <argument>ooxml</argument>
-                                               <argument>-repackage</argument>
-                                               <argument>org.apache.xmlbeans.metadata:org.apache.poi.schemas.ooxml</argument>
-                                               <argument>-d</argument>
-                                               <argument>${basedir}/target/generated-resources</argument>
-                                               <argument>-src</argument>
-                                               <argument>${basedir}/target/generated-sources</argument>
-                                               <argument>${basedir}/target/schemas</argument>
-                                       </arguments>
-                                       <additionalClasspathElements>
-                                               <additionalClasspathElement>
-                                                       ${basedir}/../../lib/ooxml/xmlbeans-4.0.0.jar
-                                               </additionalClasspathElement>
-                                       </additionalClasspathElements>
-                               </configuration>
-                       </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>exec-maven-plugin</artifactId>
+                <version>3.0.0</version>
+                <executions>
+                    <execution>
+                        <phase>process-sources</phase>
+                        <goals>
+                            <!-- need to use exec instead of java, because SchemaCompiler calls System.exit() -->
+                            <goal>exec</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <executable>java</executable>
+                    <arguments>
+                        <argument>-classpath</argument>
+                        <!-- automatically creates the classpath using all project dependencies,
+                             also adding the project build directory -->
+                        <classpath/>
+                        <argument>org.apache.xmlbeans.impl.tool.SchemaCompiler</argument>
+                        <argument>-srconly</argument>
+                        <argument>-name</argument>
+                        <argument>ooxml</argument>
+                        <argument>-repackage</argument>
+                        <argument>org.apache.xmlbeans.metadata:org.apache.poi.schemas.ooxml</argument>
+                        <argument>-d</argument>
+                        <argument>${basedir}/target/generated-resources</argument>
+                        <argument>-src</argument>
+                        <argument>${basedir}/target/generated-sources</argument>
+                        <argument>${basedir}/target/schemas</argument>
+                    </arguments>
+                    <additionalClasspathElements>
+                        <additionalClasspathElement>
+                            ${basedir}/../../lib/ooxml/xmlbeans-4.0.0.jar
+                        </additionalClasspathElement>
+                    </additionalClasspathElements>
+                </configuration>
+            </plugin>
 
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>build-helper-maven-plugin</artifactId>
-                               <version>3.2.0</version>
-                               <executions>
-                                       <execution>
-                                               <id>add-source</id>
-                                               <goals>
-                                                       <goal>add-source</goal>
-                                                       <goal>add-resource</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <resources>
-                                                               <resource>
-                                                                       <directory>${basedir}/target/generated-resources</directory>
-                                                               </resource>
-                                                               <resource>
-                                                                       <directory>${basedir}/../../src/multimodule/ooxml-full/java9</directory>
-                                                                       <targetPath>META-INF/versions/9</targetPath>
-                                                                       <includes>
-                                                                               <include>*.class</include>
-                                                                       </includes>
-                                                               </resource>
-                                                       </resources>
-                                                       <sources>
-                                                               <source>${basedir}/target/generated-sources</source>
-                                                       </sources>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>3.2.0</version>
+                <executions>
+                    <execution>
+                        <id>add-source</id>
+                        <goals>
+                            <goal>add-source</goal>
+                            <goal>add-resource</goal>
+                        </goals>
+                        <configuration>
+                            <resources>
+                                <resource>
+                                    <directory>${basedir}/target/generated-resources</directory>
+                                </resource>
+                                <resource>
+                                    <directory>${basedir}/../../src/multimodule/ooxml-full/java9</directory>
+                                    <targetPath>META-INF/versions/9</targetPath>
+                                    <includes>
+                                        <include>*.class</include>
+                                    </includes>
+                                </resource>
+                            </resources>
+                            <sources>
+                                <source>${basedir}/target/generated-sources</source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
 
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-jar-plugin</artifactId>
-                               <version>3.2.0</version>
-                               <configuration>
-                                       <archive>
-                                               <manifestEntries>
-                                                       <Multi-Release>true</Multi-Release>
-                                                       <Automatic-Module-Name>org.apache.poi.ooxml.schemas</Automatic-Module-Name>
-                                               </manifestEntries>
-                                       </archive>
-                               </configuration>
-                       </plugin>
-               </plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>3.2.0</version>
+                <configuration>
+                    <archive>
+                        <manifestEntries>
+                            <Multi-Release>true</Multi-Release>
+                            <Automatic-Module-Name>org.apache.poi.ooxml.schemas</Automatic-Module-Name>
+                        </manifestEntries>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
     </build>
 
-       <dependencies>
+    <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>poi-main</artifactId>
index 1553055431f55725a11adc663428c090e4a8a3d8..4fae32e216f22659582ef640b5162eaa6ba4fea3 100644 (file)
 
     <name>Apache POI Scratchpad package</name>
 
-       <properties>
-               <!-- Exclude some generated code from Sonar analysis -->
-               <sonar.exclusions>src/main/java/org/apache/poi/hwpf/model/types/*,src/main/java/org/apache/poi/hdf/model/hdftypes/definitions/*</sonar.exclusions>
-       </properties>
+    <properties>
+        <!-- Exclude some generated code from Sonar analysis -->
+        <sonar.exclusions>src/main/java/org/apache/poi/hwpf/model/types/*,src/main/java/org/apache/poi/hdf/model/hdftypes/definitions/*</sonar.exclusions>
+    </properties>
  
 
     <build>
-               <plugins>
-                       <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
-                       <plugin>
-                               <artifactId>maven-resources-plugin</artifactId>
-                               <version>${maven.plugin.resources.version}</version>
-                               <executions>
-                                       <execution>
-                                               <id>copy-sources</id>
-                                               <!-- here the phase you need -->
-                                               <phase>generate-sources</phase>
-                                               <goals>
-                                                       <goal>copy-resources</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <outputDirectory>${basedir}/src/main/java</outputDirectory>
-                                                       <resources>          
-                                                               <resource>
-                                                                       <directory>../../src/scratchpad/src</directory>
-                                                               </resource>
-                                                       </resources>              
-                                               </configuration>            
-                                       </execution>
-                                       <execution>
-                                               <id>copy-resources</id>
-                                               <!-- here the phase you need -->
-                                               <phase>generate-resources</phase>
-                                               <goals>
-                                                       <goal>copy-resources</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <outputDirectory>${basedir}/src/main/resources</outputDirectory>
-                                                       <resources>          
-                                                               <resource>
-                                                                       <directory>../../src/resources/scratchpad</directory>
-                                                               </resource>
-                                                       </resources>              
-                                               </configuration>            
-                                       </execution>
-                                       <execution>
-                                               <id>copy-tests</id>
-                                               <!-- here the phase you need -->
-                                               <phase>generate-test-sources</phase>
-                                               <goals>
-                                                       <goal>copy-resources</goal>
-                                               </goals>
-                                               <configuration>
-                                                       <outputDirectory>${basedir}/src/test/java</outputDirectory>
-                                                       <resources>          
-                                                               <resource>
-                                                                       <directory>../../src/scratchpad/testcases</directory>
-                                                               </resource>
-                                                       </resources>              
-                                               </configuration>            
-                                       </execution>
-                               </executions>
-                       </plugin>
-                       <!-- clean copied sources afterwards -->
-                       <plugin>
+        <plugins>
+            <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
+            <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>${maven.plugin.resources.version}</version>
+                <executions>
+                    <execution>
+                        <id>copy-sources</id>
+                        <!-- here the phase you need -->
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/src/main/java</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../../src/scratchpad/src</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>copy-resources</id>
+                        <!-- here the phase you need -->
+                        <phase>generate-resources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/src/main/resources</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../../src/resources/scratchpad</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>copy-tests</id>
+                        <!-- here the phase you need -->
+                        <phase>generate-test-sources</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/src/test/java</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../../src/scratchpad/testcases</directory>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <!-- clean copied sources afterwards -->
+            <plugin>
                 <artifactId>maven-clean-plugin</artifactId>
                 <version>${maven.plugin.clean.version}</version>
                 <configuration>
                     </filesets>
                 </configuration>
             </plugin>                  
-               </plugins>
+        </plugins>
     </build>
 
     <dependencies>
-               <dependency>
-                       <groupId>${project.groupId}</groupId>
-                       <artifactId>poi-main</artifactId>
-                       <version>${project.version}</version>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>poi-main</artifactId>
+            <version>${project.version}</version>
         </dependency>
-               <dependency>
-                       <groupId>${project.groupId}</groupId>
-                       <artifactId>poi-main</artifactId>
-                       <version>${project.version}</version>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>poi-main</artifactId>
+            <version>${project.version}</version>
             <type>test-jar</type>
             <scope>test</scope>
-               </dependency>
+        </dependency>
     </dependencies>
 </project>