Changeset 36445 in osm


Ignore:
Timestamp:
2025-05-07T22:31:07+02:00 (7 days ago)
Author:
taylor.smock
Message:

Add common dependencies for tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pom.xml

    r36442 r36445  
    187187      <artifactId>josm-unittest</artifactId>
    188188    </dependency>
     189    <!-- These are technically done by josm-unittest, but that depends upon the pom for josm-unittest being the pom that we build it with. Which isn't currently the case. -->
     190    <dependency>
     191      <groupId>org.jmockit</groupId>
     192      <artifactId>jmockit</artifactId>
     193      <scope>test</scope>
     194    </dependency>
     195    <dependency>
     196      <groupId>org.wiremock</groupId>
     197      <artifactId>wiremock</artifactId>
     198      <scope>test</scope>
     199    </dependency>
     200    <dependency>
     201      <groupId>org.junit.platform</groupId>
     202      <artifactId>junit-platform-launcher</artifactId>
     203      <scope>test</scope>
     204    </dependency>
     205    <dependency>
     206      <groupId>org.junit.platform</groupId>
     207      <artifactId>junit-platform-suite</artifactId>
     208      <scope>test</scope>
     209    </dependency>
     210    <dependency>
     211      <groupId>org.junit.vintage</groupId>
     212      <artifactId>junit-vintage-engine</artifactId>
     213      <scope>test</scope>
     214    </dependency>
     215    <dependency>
     216      <groupId>org.junit.jupiter</groupId>
     217      <artifactId>junit-jupiter-params</artifactId>
     218      <scope>test</scope>
     219    </dependency>
     220    <dependency>
     221      <groupId>org.junit.jupiter</groupId>
     222      <artifactId>junit-jupiter-api</artifactId>
     223      <scope>test</scope>
     224    </dependency>
     225    <dependency>
     226      <groupId>org.junit.jupiter</groupId>
     227      <artifactId>junit-jupiter-engine</artifactId>
     228      <scope>test</scope>
     229    </dependency>
    189230  </dependencies>
    190231  <dependencyManagement>
Note: See TracChangeset for help on using the changeset viewer.