xref: /aosp_15_r20/external/TestParameterInjector/junit5/pom.xml (revision 0a615120fe93b5def6ccfd1a41a03fb032dc2074)
1*0a615120SAndroid Build Coastguard Worker<?xml version="1.0" encoding="UTF-8"?>
2*0a615120SAndroid Build Coastguard Worker<!--
3*0a615120SAndroid Build Coastguard Worker  ~ Copyright 2021 Google Inc.
4*0a615120SAndroid Build Coastguard Worker  ~
5*0a615120SAndroid Build Coastguard Worker  ~ Licensed under the Apache License, Version 2.0 (the "License");
6*0a615120SAndroid Build Coastguard Worker  ~ you may not use this file except in compliance with the License.
7*0a615120SAndroid Build Coastguard Worker  ~ You may obtain a copy of the License at
8*0a615120SAndroid Build Coastguard Worker  ~
9*0a615120SAndroid Build Coastguard Worker  ~     http://www.apache.org/licenses/LICENSE-2.0
10*0a615120SAndroid Build Coastguard Worker  ~
11*0a615120SAndroid Build Coastguard Worker  ~ Unless required by applicable law or agreed to in writing, software
12*0a615120SAndroid Build Coastguard Worker  ~ distributed under the License is distributed on an "AS IS" BASIS,
13*0a615120SAndroid Build Coastguard Worker  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*0a615120SAndroid Build Coastguard Worker  ~ See the License for the specific language governing permissions and
15*0a615120SAndroid Build Coastguard Worker  ~ limitations under the License.
16*0a615120SAndroid Build Coastguard Worker  -->
17*0a615120SAndroid Build Coastguard Worker
18*0a615120SAndroid Build Coastguard Worker<project xmlns="http://maven.apache.org/POM/4.0.0"
19*0a615120SAndroid Build Coastguard Worker         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20*0a615120SAndroid Build Coastguard Worker         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21*0a615120SAndroid Build Coastguard Worker  <modelVersion>4.0.0</modelVersion>
22*0a615120SAndroid Build Coastguard Worker
23*0a615120SAndroid Build Coastguard Worker  <parent>
24*0a615120SAndroid Build Coastguard Worker    <groupId>com.google.testparameterinjector</groupId>
25*0a615120SAndroid Build Coastguard Worker    <artifactId>test-parameter-injector-parent</artifactId>
26*0a615120SAndroid Build Coastguard Worker    <version>HEAD-SNAPSHOT</version>
27*0a615120SAndroid Build Coastguard Worker  </parent>
28*0a615120SAndroid Build Coastguard Worker
29*0a615120SAndroid Build Coastguard Worker  <artifactId>test-parameter-injector-junit5</artifactId>
30*0a615120SAndroid Build Coastguard Worker
31*0a615120SAndroid Build Coastguard Worker  <name>TestParameterInjector for JUnit5</name>
32*0a615120SAndroid Build Coastguard Worker
33*0a615120SAndroid Build Coastguard Worker  <dependencies>
34*0a615120SAndroid Build Coastguard Worker    <!-- Compile-time dependencies -->
35*0a615120SAndroid Build Coastguard Worker    <dependency>
36*0a615120SAndroid Build Coastguard Worker      <groupId>org.junit.jupiter</groupId>
37*0a615120SAndroid Build Coastguard Worker      <artifactId>junit-jupiter</artifactId>
38*0a615120SAndroid Build Coastguard Worker      <version>5.8.1</version>
39*0a615120SAndroid Build Coastguard Worker    </dependency>
40*0a615120SAndroid Build Coastguard Worker    <dependency>
41*0a615120SAndroid Build Coastguard Worker      <groupId>org.junit.jupiter</groupId>
42*0a615120SAndroid Build Coastguard Worker      <artifactId>junit-jupiter-engine</artifactId>
43*0a615120SAndroid Build Coastguard Worker      <version>5.8.1</version>
44*0a615120SAndroid Build Coastguard Worker    </dependency>
45*0a615120SAndroid Build Coastguard Worker
46*0a615120SAndroid Build Coastguard Worker    <!-- Test dependencies -->
47*0a615120SAndroid Build Coastguard Worker    <dependency>
48*0a615120SAndroid Build Coastguard Worker      <groupId>org.junit.jupiter</groupId>
49*0a615120SAndroid Build Coastguard Worker      <artifactId>junit-jupiter-params</artifactId>
50*0a615120SAndroid Build Coastguard Worker      <version>5.8.1</version>
51*0a615120SAndroid Build Coastguard Worker      <scope>test</scope>
52*0a615120SAndroid Build Coastguard Worker    </dependency>
53*0a615120SAndroid Build Coastguard Worker    <dependency>
54*0a615120SAndroid Build Coastguard Worker      <groupId>org.junit.platform</groupId>
55*0a615120SAndroid Build Coastguard Worker      <artifactId>junit-platform-launcher</artifactId>
56*0a615120SAndroid Build Coastguard Worker      <version>1.8.1</version>
57*0a615120SAndroid Build Coastguard Worker      <scope>test</scope>
58*0a615120SAndroid Build Coastguard Worker    </dependency>
59*0a615120SAndroid Build Coastguard Worker  </dependencies>
60*0a615120SAndroid Build Coastguard Worker</project>
61