[Java]Spring Frameworkのjarファイルのダウンロード方法

Spring Frameworkの公式サイトはなんだかカッコよくなってるんですが、jarファイルのダウンロード先がさっぱりわかりません
Maven使えって感じなんですが、いろいろと都合もあり、jarファイルがほしいんです

公式サイトをざっとみてみる

Spring Framework公式サイトを見てもどこにもjarファイルのダウンロードの案内がありません。
QuickStartのところにもpom.xmlに記述する内容のみです。
まぁ、Maven使ってjarをダウンロードすればよいのでしょうが、諸事情によりそんなわけにはいかないのです。
※諸事象とは、勝手にアプリケーションをPCにインストールしたりしてはいけないとか、ネットワーク的な制限でアクセスできないなど。そんなお仕事の環境とかもあるわけです。。。。

見つけた!!

Introduction to the Spring Frameworkページ内のDistribution Zip Filesに見つけました。

Distribution Zip Files

Although using a build system that supports dependency management is the recommended way to obtain the Spring Framework, it is still possible to download a distribution zip file.

Distribution zips are published to the Spring Maven Repository (this is just for our convenience, you don’t need Maven or any other build system in order to download them).

To download a distribution zip open a web browser to http://repo.spring.io/release/org/springframework/spring and select the appropriate subfolder for the version that you want. Distribution files end -dist.zip, for example spring-framework-4.1.6.RELEASE-RELEASE-dist.zip. Distributions are also published for milestones and snapshots.

ここを読むと、http://repo.spring.io/release/org/springframework/springからダウンロードできるみたいです。
例えば4.1.6-RELEASEだとこんな感じ
Spring jarダウンロード

spring-framework-4.1.6.RELEASE-dist.zipの中には目的のjarが一式ありました