Changeset 19562 in josm for trunk/nodist/pom.xml


Ignore:
Timestamp:
2026-04-11T18:29:20+02:00 (43 hours ago)
Author:
gaben
Message:

align Maven dependencies and JDK profiles with Ivy setup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nodist/pom.xml

    r19552 r19562  
    2424        <!-- Note: 2.0.0 requires Java 17, and we'll need to upgrade to it for Java 25 LTS (see JEP 486)-->
    2525        <junit5-system-exit.version>1.1.2</junit5-system-exit.version>
     26        <equalsverifier.version>3.19.4</equalsverifier.version>
    2627    </properties>
    2728    <modules>
     
    370371                <groupId>nl.jqno.equalsverifier</groupId>
    371372                <artifactId>equalsverifier</artifactId>
    372                 <version>3.18.1</version>
     373                <version>${equalsverifier.version}</version>
    373374                <scope>test</scope>
    374375            </dependency>
     
    395396            <properties>
    396397                <junit5-system-exit.version>2.0.2</junit5-system-exit.version>
     398                <jmockit.version>1.50</jmockit.version>
     399                <checkstyle.version>12.3.1</checkstyle.version>
     400                <equalsverifier.version>4.3.1</equalsverifier.version>
     401            </properties>
     402        </profile>
     403        <profile>
     404            <!-- should be used together with java-17 profile -->
     405            <id>java-21</id>
     406            <activation>
     407                <jdk>[21</jdk>
     408            </activation>
     409            <properties>
     410                <checkstyle.version>13.2.0</checkstyle.version>
    397411            </properties>
    398412        </profile>
Note: See TracChangeset for help on using the changeset viewer.