Skip to content

Commit 90574b6

Browse files
committed
Bump org.apache.commons:commons-parent from 89 to 96
1 parent 45d72c7 commit 90574b6

File tree

3 files changed

+55
-15
lines changed

3 files changed

+55
-15
lines changed

commons-math-legacy/pom.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,43 @@
205205
<suppressionsLocation>${math.parent.dir}/src/main/resources/checkstyle/checkstyle-suppressions-legacy.xml</suppressionsLocation>
206206
</configuration>
207207
</plugin>
208+
<plugin>
209+
<groupId>org.apache.rat</groupId>
210+
<artifactId>apache-rat-plugin</artifactId>
211+
<!-- Note: commons-parent binds the check goal to the validate phase -->
212+
<configuration>
213+
<!--
214+
Needed for command-line access, e.g mvn apache-rat:rat and mvn apache-rat:check
215+
Below should agree with config in <reporting> section, so the site
216+
gets consistent output.
217+
-->
218+
<excludes combine.children="append">
219+
<exclude>dist-archive/**</exclude>
220+
<exclude>**/site-content/**</exclude>
221+
<!-- MANIFEST files cannot have any comments, so we can't put license header -->
222+
<exclude>src/test/maxima/special/RealFunctionValidation/MANIFEST.txt</exclude>
223+
<!-- the following are test data files with specific syntax that cannot include
224+
Apache header (and the contained data is public, it is not owned by Apache) -->
225+
<exclude>src/main/resources/assets/org/apache/commons/math4/legacy/random/new-joe-kuo-6.21201</exclude>
226+
<exclude>src/test/resources/org/apache/commons/math4/legacy/distribution/testData.txt</exclude>
227+
<exclude>src/test/resources/org/apache/commons/math4/legacy/random/emptyFile.txt</exclude>
228+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/PiDigits.txt</exclude>
229+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc3.txt</exclude>
230+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Lew.txt</exclude>
231+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc2.txt</exclude>
232+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc1.txt</exclude>
233+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Lottery.txt</exclude>
234+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc4.txt</exclude>
235+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Michelso.txt</exclude>
236+
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Mavro.txt</exclude>
237+
<exclude>src/test/resources/org/apache/commons/math4/legacy/fitting/leastsquares/Lanczos1.dat</exclude>
238+
<exclude>src/test/resources/org/apache/commons/math4/legacy/fitting/leastsquares/MGH17.dat</exclude>
239+
<!-- direction numbers for Sobol generation from Frances Y. Kuo and Stephen Joe,
240+
available under a BSD-style license (see LICENSE.txt) -->
241+
<exclude>src/main/resources/assets/org/apache/commons/math4/legacy/random/new-joe-kuo-6.21201</exclude>
242+
</excludes>
243+
</configuration>
244+
</plugin>
208245
</plugins>
209246
</build>
210247

pom.xml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.apache.commons</groupId>
2323
<artifactId>commons-parent</artifactId>
24-
<version>89</version>
24+
<version>96</version>
2525
</parent>
2626

2727
<artifactId>commons-math4-parent</artifactId>
@@ -340,25 +340,28 @@
340340
<exclude>**/site-content/**</exclude>
341341

342342
<!-- MANIFEST files cannot have any comments, so we can't put license header -->
343-
<exclude>src/test/maxima/special/RealFunctionValidation/MANIFEST.txt</exclude>
343+
<exclude>commons-math-legacy/src/test/maxima/special/RealFunctionValidation/MANIFEST.txt</exclude>
344344

345345
<!-- the following are test data files with specific syntax that cannot include
346346
Apache header (and the contained data is public, it is not owned by Apache) -->
347-
<exclude>src/test/resources/org/apache/commons/math4/legacy/distribution/testData.txt</exclude>
348-
<exclude>src/test/resources/org/apache/commons/math4/legacy/random/emptyFile.txt</exclude>
349-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/PiDigits.txt</exclude>
350-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc3.txt</exclude>
351-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Lew.txt</exclude>
352-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc2.txt</exclude>
353-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc1.txt</exclude>
354-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Lottery.txt</exclude>
355-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc4.txt</exclude>
356-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Michelso.txt</exclude>
357-
<exclude>src/test/resources/org/apache/commons/math4/legacy/stat/data/Mavro.txt</exclude>
347+
<exclude>commons-math-legacy/src/main/resources/assets/org/apache/commons/math4/legacy/random/new-joe-kuo-6.21201</exclude>
348+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/distribution/testData.txt</exclude>
349+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/random/emptyFile.txt</exclude>
350+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/PiDigits.txt</exclude>
351+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc3.txt</exclude>
352+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/Lew.txt</exclude>
353+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc2.txt</exclude>
354+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc1.txt</exclude>
355+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/Lottery.txt</exclude>
356+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/NumAcc4.txt</exclude>
357+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/Michelso.txt</exclude>
358+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/stat/data/Mavro.txt</exclude>
359+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/fitting/leastsquares/Lanczos1.dat</exclude>
360+
<exclude>commons-math-legacy/src/test/resources/org/apache/commons/math4/legacy/fitting/leastsquares/MGH17.dat</exclude>
358361

359362
<!-- direction numbers for Sobol generation from Frances Y. Kuo and Stephen Joe,
360363
available under a BSD-style license (see LICENSE.txt) -->
361-
<exclude>src/main/resources/assets/org/apache/commons/math4/legacy/random/new-joe-kuo-6.21201</exclude>
364+
<exclude>commons-math-legacy/src/main/resources/assets/org/apache/commons/math4/legacy/random/new-joe-kuo-6.21201</exclude>
362365
</excludes>
363366
</configuration>
364367
</plugin>

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Caveat:
125125
transferred to Commons Statistics inference.
126126
</action>
127127
<action dev="sebb" type="fix">Drop coveralls, as no longer used</action>
128-
<action dev="sebb" type="update">Bump Commons Parent from 78 to 81</action>
128+
<action dev="sebb" type="update">Bump Commons Parent from 78 to 96</action>
129129
<action dev="sebb" type="update">Bump picocli from 3.9.5 to 4.7.6</action>
130130
<action dev="sebb" type="update">Bump Commons Imaging from 1.0-alpha3 to 1.0.0-alpha6</action>
131131
<action dev="engelen" type="update" due-to="Dependabot">Bump org.apache.commons:commons-rng-bom from 1.5 to 1.6 #244</action>

0 commit comments

Comments
 (0)