LoginSignup
0
0

More than 3 years have passed since last update.

Spring Data のマイルストーンリリースを試用する方法

Last updated at Posted at 2020-02-19

4 月にリリース予定の Spring Data JDBC 2.0.0 で、enum とかのパラメータがちゃんと変換されたり、PagingAndSortingRepository を継承できるようになるみたいなので、試しにマイルストーンリリースを使ってみようと思いましたが、使い方を完全に忘れていたのでメモを残しておきます。

まず build.gradle にマイルストーンリポジトリを追加。

build.gradle
repositories {
    mavenCentral()
    maven { url "https://repo.spring.io/libs-milestone" }
}

次に gradle.properties に利用するマイルストーンを指定。

gradle.properties
spring-data-releasetrain.version=Neumann-M3

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0