Skip to content

How to always use doma with the latest patch version

Uragami Taichi edited this page Jul 16, 2022 · 1 revision

If you always want to use Doma with latest patch version while explicitly indicating major version and minor version, write dependency following:

<!-- Use Doma 2.19.0 or more and less than 2.20.0 -->
<dependency>
    <groupId>org.seasar.doma</groupId>
    <artifactId>doma</artifactId>
    <version>[2.19.0,2.20.0)</version>
</dependency>

cf. https://maven.apache.org/pom.html#Dependency_Version_Requirement_Specification

Clone this wiki locally