HackToTech

Hack To Technology

Springのmilestoneのバージョンを試してたのでメモ

個人的な備忘録
6.2.0-M1 の新機能の @Fallback 試したかったが、
そもそもどこにライブラリが上がっているのかを知らなかったのでメモ github.com

普通に↓に記載されたリポジトリにあがっているので、 github.com

あとはいつも通り build.gradle.kts に記載すれば良い

repositories {
    mavenCentral()
    maven {
        url = uri("https://repo.spring.io/milestone")
    }
}

dependencies {
    implementation("org.springframework.boot:spring-boot-starter")
    implementation("org.springframework.boot:spring-boot-starter-web")
    implementation("org.jetbrains.kotlin:kotlin-reflect")
    implementation("org.springframework:spring-aop:6.2.0-M1")
    implementation("org.springframework:spring-beans:6.2.0-M1")
    implementation("org.springframework:spring-expression:6.2.0-M1")
    implementation("org.springframework:spring-context:6.2.0-M1")
    implementation("org.springframework:spring-core:6.2.0-M1")
    implementation("org.springframework:spring-jcl:6.2.0-M1")
    testImplementation("org.springframework.boot:spring-boot-starter-test")
}