You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@creadur.apache.org by "ASF subversion and git services (Jira)" <ji...@apache.org> on 2021/12/22 21:23:00 UTC

[jira] [Commented] (RAT-283) Unify Java 8 requirement or non-requirement

    [ https://issues.apache.org/jira/browse/RAT-283?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17464076#comment-17464076 ] 

ASF subversion and git services commented on RAT-283:
-----------------------------------------------------

Commit 445e0a8a3658db3929cfa7062b423d6a26262cdc in creadur-rat's branch refs/heads/update-doxia-tools from Philipp Ottlinger
[ https://gitbox.apache.org/repos/asf?p=creadur-rat.git;h=445e0a8 ]

RAT-283: Add velocity.log to ignore as it is generated during builds


> Unify Java 8 requirement or non-requirement
> -------------------------------------------
>
>                 Key: RAT-283
>                 URL: https://issues.apache.org/jira/browse/RAT-283
>             Project: Apache Rat
>          Issue Type: Bug
>            Reporter: Elliotte Rusty Harold
>            Assignee: Philipp Ottlinger
>            Priority: Major
>
> In the pom.xml I find dependencies that are very old to avoid requiring Java *1.6* or later. However I also see commons-io 2.8.0 that requires Java *1.8* or later. Make a clear decision on the minimum version of Java and upgrade or downgrade dependencies accordingly. 
> FYI Apache Maven requires Java 1.7 so I'd prefer not to go higher than that.
> ```
>       <dependency>
>         <groupId>commons-collections</groupId>
>         <artifactId>commons-collections</artifactId>
>         <!-- Later versions require Java 1.6+ -->
>         <version>3.2.2</version>
>       </dependency>
>       <dependency>
>         <groupId>commons-io</groupId>
>         <artifactId>commons-io</artifactId>
>         <version>2.8.0</version>
>       </dependency>
>       <dependency>
>         <groupId>org.apache.commons</groupId>
>         <artifactId>commons-lang3</artifactId>
>         <!--  later versions require Java 1.6+ -->
>         <version>3.5</version>
>       </dependency>
>       <dependency>
>         <groupId>org.apache.commons</groupId>
>         <artifactId>commons-compress</artifactId>
>         <!--  later versions require Java 1.6+ -->
>         <version>1.19</version>
>       </dependency>
> ```



--
This message was sent by Atlassian Jira
(v8.20.1#820001)