]> source.dussan.org Git - poi.git/commitdiff
fix paths to new gradle directories
authorAndreas Beeker <kiwiwings@apache.org>
Thu, 8 Apr 2021 17:54:42 +0000 (17:54 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Thu, 8 Apr 2021 17:54:42 +0000 (17:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888529 13f79535-47bb-0310-9956-ffa450edef68

build.gradle
jenkins/create_jobs.groovy
poi/src/main/java/org/apache/poi/hssf/record/common/FeatFormulaErr2.java
poi/src/main/java/org/apache/poi/poifs/common/POIFSBigBlockSize.java
sonar/integration-test/pom.xml

index 64f0bdacdecb27faea3a93cf655944e2843d6948..375615866380029bf0f453536e17af657f9905dc 100644 (file)
@@ -333,7 +333,7 @@ rat {
     // include all directories which contain files that are included in releases
     includes.add("examples/**")
     includes.add("excelant/**")
-    includes.add("integrationtest/**")
+    includes.add("poi-integration/**")
     includes.add("legal/**")
     includes.add("main/**")
     includes.add("maven/**")
index af67405037b6160a86ae782eb2a59f5288bcb4d4..f841b787905aa3fdb2f1fcb391272b1ec493fd6f 100644 (file)
@@ -453,7 +453,7 @@ poijobs.each { poijob ->
                     }
                     ant {
                         targets(['run'] + (poijob.properties ?: []))
-                        buildFile('integrationtest/build.xml')
+                        buildFile('poi-integration/build.xml')
                         // Properties did not work, so I had to use targets instead
                         //properties(poijob.properties ?: '')
                         antInstallation(antRT)
@@ -470,7 +470,7 @@ poijobs.each { poijob ->
                     }
                 }
                 // in archive, junit and jacoco publishers, matches beneath build/*/build/... are for Gradle-build results
-                archiveArtifacts('build/dist/*.tar.gz,build/findbugs.html,build/coverage/**,integrationtest/build/test-results/**,*/build/libs/*.jar')
+                archiveArtifacts('build/dist/*.tar.gz,build/findbugs.html,build/coverage/**,poi-integration/build/test-results/**,*/build/libs/*.jar')
                 warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
                     resolveRelativePaths()
                 }
index f7330fd5ec9e10bedc9d5d0aef46439d3f27d6dc..bdf9f06bc2d3bf1f65c234763c13fd2f612b94a7 100644 (file)
@@ -33,7 +33,7 @@ import org.apache.poi.util.LittleEndianOutput;
 /**
  * Title: FeatFormulaErr2 (Formula Evaluation Shared Feature) common record part
  * <P>
- * This record part specifies Formula Evaluation & Error Ignoring data
+ * This record part specifies Formula Evaluation &amp; Error Ignoring data
  *  for a sheet, stored as part of a Shared Feature. It can be found in
  *  records such as {@link FeatRecord}.
  * For the full meanings of the flags, see pages 669 and 670
index 1e8b1b113acf747cc344f45ebe2a8d72f0b2f0bc..efb35ac2c7dd25bb1231fc616c769f85ac14f765 100644 (file)
@@ -15,7 +15,7 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 ==================================================================== */
-        
+
 
 package org.apache.poi.poifs.common;
 
@@ -28,30 +28,30 @@ public final class POIFSBigBlockSize
 {
    private int bigBlockSize;
    private short headerValue;
-   
+
    protected POIFSBigBlockSize(int bigBlockSize, short headerValue) {
       this.bigBlockSize = bigBlockSize;
       this.headerValue = headerValue;
    }
-   
+
    public int getBigBlockSize() {
       return bigBlockSize;
    }
-   
+
    /**
-    * Returns the value that gets written into the 
+    * Returns the value that gets written into the
     *  header.
     * Is the power of two that corresponds to the
-    *  size of the block, eg 512 => 9
+    *  size of the block, eg 512 =&gt; 9
     */
    public short getHeaderValue() {
       return headerValue;
    }
-   
+
    public int getPropertiesPerBlock() {
       return bigBlockSize / POIFSConstants.PROPERTY_SIZE;
    }
-   
+
    public int getBATEntriesPerBlock() {
       return bigBlockSize / LittleEndianConsts.INT_SIZE;
    }
index 01e75d9b9be74a824bb18dd4126720173745d959..583d28ec6b98a64a879afab4edc61e34aa191d84 100644 (file)
@@ -31,7 +31,7 @@
                             <outputDirectory>${basedir}/src/test/java</outputDirectory>
                             <resources>
                                 <resource>
-                                    <directory>../../integrationtest/src/test/java</directory>
+                                    <directory>../../poi-integration/src/test/java</directory>
                                 </resource>
                                 <resource>
                                     <directory>../../main/src/test/java</directory>
@@ -43,7 +43,7 @@
                                     </includes>
                                 </resource>
                                 <resource>
-                                    <directory>../../integrationtest/src/test/resources</directory>
+                                    <directory>../../poi-integration/src/test/resources</directory>
                                 </resource>
                             </resources>
                         </configuration>