0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Maven】dependencyのバージョンをSpring系の内部バージョンに合わせる【SpringBoot】

Last updated at Posted at 2020-06-04

TL;DR

  • ${ユーザー}/.m2/repository/org/springframework/boot/spring-boot-dependencies/${Springのバージョン}.RELEASE/spring-boot-dependencies-${Springのバージョン}.RELEASE.pomに定義されているpropertiesはプロジェクトのpomからも参照できる
    • (正確には、このようなpomに書かれているpropertiesにアクセスできる)
  • このpropertiesを元にバージョンを設定することで、dependencyのバージョンをSpringBootのバージョンに合わせることができる
    • アップデートが楽になる
    • ライブラリの相性問題が発生しにくくなる

やること

spring-boot-starter系の依存にモジュールを加える場合などで、手動でspring-boot-starter内の依存に合わせてバージョンを管理するのは手間になったりします。
どうせなら色々なライブラリのバージョンがSpringのバージョンに合わせて管理されている方が諸々楽なので、そのやり方を書きます。

やり方

${ユーザー}/.m2/repository/org/springframework/boot/spring-boot-dependencies/${Springのバージョン}.RELEASE/spring-boot-dependencies-${Springのバージョン}.RELEASE.pom内のpropertiesの情報を用いることでできます。

spring-boot-dependencies-2.2.6.RELEASE.pomから抜粋
  ...
  <properties>
    <activemq.version>5.15.12</activemq.version>
    <antlr2.version>2.7.7</antlr2.version>
    <appengine-sdk.version>1.9.79</appengine-sdk.version>
    <artemis.version>2.10.1</artemis.version>
    <aspectj.version>1.9.5</aspectj.version>
    <assertj.version>3.13.2</assertj.version>
    ...

Jacksonの例

Jacksonを例にやってみます。
spring-boot-dependencies-2.2.6.RELEASE.pomではjackson.versionとして以下のように定義されています。

spring-boot-dependencies-2.2.6.RELEASE.pomから抜粋
    <jackson.version>2.10.3</jackson.version>
    <jackson-bom.version>${jackson.version}</jackson-bom.version>

これをプロジェクトのpomで導入すると以下のように書けます。
${jackson.version}として変数を参照しています。

pom.xml
        <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-json</artifactId>
        </dependency>
        <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-kotlin -->
        <dependency>
            <groupId>com.fasterxml.jackson.module</groupId>
            <artifactId>jackson-module-kotlin</artifactId>
            <version>${jackson.version}</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-csv -->
        <dependency>
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-csv</artifactId>
            <version>${jackson.version}</version>
        </dependency>

ideaの場合

Intellij ideaの場合、変数に対する補完が効き、定義に飛ぶこともできます。
これによって効率的に目的の変数を探すことができるでしょう。

スクリーンショット 2020-06-04 17.25.24.png

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?