|
5 | 5 | <name>baseCode</name> |
6 | 6 | <groupId>baseCode</groupId> |
7 | 7 | <artifactId>baseCode</artifactId> |
8 | | - <version>1.1.26</version> |
| 8 | + <version>1.1.27</version> |
9 | 9 | <inceptionYear>2003</inceptionYear> |
10 | 10 | <description> |
11 | 11 | <![CDATA[Data structures, math and statistics tools, and utilities that are often needed across projects.]]> |
|
52 | 52 | <artifactId>poi</artifactId> |
53 | 53 | <version>5.4.1</version> |
54 | 54 | <optional>true</optional> |
| 55 | + <exclusions> |
| 56 | + <exclusion> |
| 57 | + <groupId>org.apache.logging.log4j</groupId> |
| 58 | + <artifactId>log4j-api</artifactId> |
| 59 | + </exclusion> |
| 60 | + <exclusion> |
| 61 | + <groupId>commons-codec</groupId> |
| 62 | + <artifactId>commons-codec</artifactId> |
| 63 | + </exclusion> |
| 64 | + <exclusion> |
| 65 | + <groupId>commons-io</groupId> |
| 66 | + <artifactId>commons-io</artifactId> |
| 67 | + </exclusion> |
| 68 | + <exclusion> |
| 69 | + <groupId>org.apache.commons</groupId> |
| 70 | + <artifactId>commons-collections4</artifactId> |
| 71 | + </exclusion> |
| 72 | + </exclusions> |
55 | 73 | </dependency> |
56 | 74 |
|
57 | 75 | <dependency> |
|
64 | 82 | <dependency> |
65 | 83 | <groupId>commons-net</groupId> |
66 | 84 | <artifactId>commons-net</artifactId> |
67 | | - <version>3.11.1</version> |
| 85 | + <version>3.12.0</version> |
68 | 86 | </dependency> |
69 | 87 | <dependency> |
70 | 88 | <groupId>org.apache.commons</groupId> |
|
91 | 109 | <dependency> |
92 | 110 | <groupId>commons-io</groupId> |
93 | 111 | <artifactId>commons-io</artifactId> |
94 | | - <version>2.18.0</version> |
| 112 | + <version>2.20.0</version> |
95 | 113 | </dependency> |
96 | 114 | <dependency> |
97 | 115 | <groupId>org.apache.commons</groupId> |
98 | 116 | <artifactId>commons-collections4</artifactId> |
99 | | - <version>4.4</version> |
| 117 | + <version>4.5.0</version> |
100 | 118 | </dependency> |
101 | 119 | <dependency> |
102 | 120 | <groupId>commons-codec</groupId> |
103 | 121 | <artifactId>commons-codec</artifactId> |
104 | | - <version>1.18.0</version> |
| 122 | + <version>1.19.0</version> |
105 | 123 | <scope>runtime</scope> |
106 | 124 | </dependency> |
107 | 125 | <dependency> |
|
113 | 131 | <dependency> |
114 | 132 | <groupId>org.apache.commons</groupId> |
115 | 133 | <artifactId>commons-csv</artifactId> |
116 | | - <version>1.14.0</version> |
| 134 | + <version>1.14.1</version> |
117 | 135 | </dependency> |
118 | 136 |
|
119 | 137 | <!-- R engine --> |
| 138 | + <!-- rJava --> |
120 | 139 | <dependency> |
121 | 140 | <groupId>org.rosuda.REngine</groupId> |
122 | 141 | <artifactId>REngine</artifactId> |
123 | | - <version>2.1.0</version> |
| 142 | + <version>${rJava.version}</version> |
| 143 | + <optional>true</optional> |
124 | 144 | </dependency> |
125 | 145 | <dependency> |
126 | 146 | <groupId>org.rosuda.REngine</groupId> |
127 | 147 | <artifactId>Rserve</artifactId> |
128 | | - <version>1.8.1</version> |
| 148 | + <version>${rserve.version}</version> |
129 | 149 | <optional>true</optional> |
130 | 150 | </dependency> |
131 | | - <!-- JRI is the engine implementation --> |
132 | 151 | <dependency> |
133 | | - <groupId>RoSuDA</groupId> |
| 152 | + <groupId>org.rosuda.REngine</groupId> |
134 | 153 | <artifactId>JRI</artifactId> |
135 | | - <version>0.5-0</version> |
136 | | - <scope>runtime</scope> |
| 154 | + <version>${rJava.version}</version> |
| 155 | + <optional>true</optional> |
137 | 156 | </dependency> |
138 | 157 | <dependency> |
139 | | - <groupId>RoSuDA</groupId> |
| 158 | + <groupId>org.rosuda.REngine</groupId> |
140 | 159 | <artifactId>JRIEngine</artifactId> |
141 | | - <version>0.5-0</version> |
| 160 | + <version>${rJava.version}</version> |
| 161 | + <optional>true</optional> |
142 | 162 | </dependency> |
143 | 163 |
|
144 | 164 | <!-- Sparse matrix library; lapack --> |
|
300 | 320 | <dependency> |
301 | 321 | <groupId>org.assertj</groupId> |
302 | 322 | <artifactId>assertj-core</artifactId> |
303 | | - <version>3.27.3</version> |
| 323 | + <version>3.27.4</version> |
304 | 324 | <scope>test</scope> |
305 | 325 | </dependency> |
306 | 326 | <dependency> |
307 | 327 | <groupId>org.apache.logging.log4j</groupId> |
308 | 328 | <artifactId>log4j-api</artifactId> |
309 | | - <version>2.24.3</version> |
| 329 | + <version>${log4j.version}</version> |
310 | 330 | <scope>test</scope> |
311 | 331 | </dependency> |
312 | 332 | <dependency> |
313 | 333 | <groupId>org.apache.logging.log4j</groupId> |
314 | 334 | <artifactId>log4j-core</artifactId> |
315 | | - <version>2.24.3</version> |
| 335 | + <version>${log4j.version}</version> |
316 | 336 | <scope>test</scope> |
317 | 337 | </dependency> |
318 | 338 | <dependency> |
319 | 339 | <groupId>org.apache.logging.log4j</groupId> |
320 | 340 | <artifactId>log4j-slf4j-impl</artifactId> |
321 | | - <version>2.24.3</version> |
| 341 | + <version>${log4j.version}</version> |
322 | 342 | <scope>test</scope> |
323 | 343 | </dependency> |
324 | 344 | </dependencies> |
|
335 | 355 | <includes> |
336 | 356 | <include>**/*.owl.gz</include> |
337 | 357 | <include>**/*.properties</include> |
| 358 | + <include>**/*.R</include> |
338 | 359 | </includes> |
339 | 360 | <filtering>false</filtering> |
340 | 361 | </resource> |
|
449 | 470 | <artifactId>maven-surefire-plugin</artifactId> |
450 | 471 | <version>2.22.2</version> |
451 | 472 | <configuration> |
452 | | - <argLine>-enableassertions -Djava.awt.headless=true</argLine> |
| 473 | + <argLine>-enableassertions -Djava.awt.headless=true -Djava.library.path=${rJava.libDir}</argLine> |
453 | 474 | <reportsDirectory>target/surefire-reports</reportsDirectory> |
454 | 475 | <redirectTestOutputToFile>true</redirectTestOutputToFile> |
455 | 476 | <includes> |
|
656 | 677 | <configuration> |
657 | 678 | <allowMajorUpdates>false</allowMajorUpdates> |
658 | 679 | <ignoredVersions>.*-a.*,.*-b.*,.*-M.*</ignoredVersions> |
| 680 | + <dependencyExcludes> |
| 681 | + <dependencyExclude>org.rosuda.REngine:*:*</dependencyExclude> |
| 682 | + </dependencyExcludes> |
659 | 683 | </configuration> |
660 | 684 | </plugin> |
661 | 685 | </plugins> |
|
678 | 702 | <pavlab.server>frink.pavlab.msl.ubc.ca</pavlab.server> |
679 | 703 | <pavlab.repoDir>/space/maven2</pavlab.repoDir> |
680 | 704 | <pavlab.siteDir>/space/web/maven-sites</pavlab.siteDir> |
| 705 | + <log4j.version>2.25.1</log4j.version> |
681 | 706 | <lucene.version>3.6.2</lucene.version> |
| 707 | + <!-- rJava --> |
| 708 | + <!-- You may override this in ~/.m2/settings.xml --> |
| 709 | + <rJava.version>1.0-13</rJava.version> |
| 710 | + <rJava.libDir>/usr/lib64/R/library/rJava/jri</rJava.libDir> |
| 711 | + <rserve.version>1.8-14</rserve.version> |
682 | 712 | </properties> |
683 | 713 | </project> |
0 commit comments